Skip to content

Commit b9127b6

Browse files
Merge pull request #490 from TakayukiHoshi1984/bugfix_whitelist_dialog
ホワイトリスト画面が開かない件の修正
2 parents 33cb0d6 + 0ec4540 commit b9127b6

33 files changed

Lines changed: 11907 additions & 80 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,3 +304,5 @@ build.xml
304304
HVCW.jar
305305
RobotLibrary.jar
306306
demo.zip
307+
node_modules
308+
dist
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# switchbot-demo-app
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Run your tests
19+
```
20+
npm run test
21+
```
22+
23+
### Lints and fixes files
24+
```
25+
npm run lint
26+
```
27+
28+
### Customize configuration
29+
See [Configuration Reference](https://cli.vuejs.org/config/).
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@echo off
2+
3+
if "%1" == "build" (
4+
if not exist node_modules npm install
5+
if not exist dist npm run build
6+
)
7+
8+
if "%1" == "clean" (
9+
if exist dist rmdir /s /q dist
10+
)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/sh
2+
3+
NODE_MODULES=./node_modules
4+
DIST=./dist
5+
6+
function build() {
7+
test -e ${NODE_MODULES}
8+
if [ $? -eq 1 ]
9+
then
10+
npm install
11+
fi
12+
13+
test -e ${DIST}
14+
if [ $? -eq 1 ]
15+
then
16+
npm run build
17+
fi
18+
}
19+
20+
function clean() {
21+
rm -fr ${DIST}
22+
}
23+
24+
case "${1}" in
25+
"build" ) build ;;
26+
"clean" ) clean ;;
27+
esac

dConnectDevicePlugin/dConnectDeviceSwitchBot/demo/css/app.84c15bda.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

dConnectDevicePlugin/dConnectDeviceSwitchBot/demo/css/chunk-vendors.fbe9bade.css

Lines changed: 0 additions & 9 deletions
This file was deleted.

dConnectDevicePlugin/dConnectDeviceSwitchBot/demo/index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

dConnectDevicePlugin/dConnectDeviceSwitchBot/demo/js/app.99c625f6.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

dConnectDevicePlugin/dConnectDeviceSwitchBot/demo/js/app.99c625f6.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)