-
- Downloads
Merge branch 'feat/hyperscript' into 'master'
Feat/hyperscript See merge request hermod/tv_panel!1
No related branches found
No related tags found
Showing
- .babelrc 2 additions, 1 deletion.babelrc
- front/.eslintrc 2 additions, 1 deletionfront/.eslintrc
- front/cssStringify.js 4 additions, 2 deletionsfront/cssStringify.js
- front/diffNodes.js 24 additions, 0 deletionsfront/diffNodes.js
- front/display.js 48 additions, 61 deletionsfront/display.js
- front/index.html 2 additions, 1 deletionfront/index.html
- front/setup.js 7 additions, 0 deletionsfront/setup.js
- front/socket.js 5 additions, 4 deletionsfront/socket.js
- package.json 3 additions, 2 deletionspackage.json
- server/index.js 30 additions, 31 deletionsserver/index.js
- server/utils.js 2 additions, 0 deletionsserver/utils.js
- yarn.lock 44 additions, 0 deletionsyarn.lock
front/diffNodes.js
0 → 100644
front/setup.js
0 → 100644
... | @@ -10,16 +10,17 @@ | ... | @@ -10,16 +10,17 @@ |
"start:dev": "nodemon ./server/index.js", | "start:dev": "nodemon ./server/index.js", | ||
"start:prod": "node ./server/index.js", | "start:prod": "node ./server/index.js", | ||
"start:front": "parcel serve ./front/ -d build", | "start:front": "parcel serve ./front/ -d build", | ||
"build:front": | "build:front": "rm -f build/* && parcel build ./front/ -d build --public-url / --no-cache && mv build/*.html build/index.html" | ||
"rm -f build/* && parcel build ./front/ -d build --public-url / --no-cache && mv build/*.html build/index.html" | |||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"hyperscript": "^2.0.2", | |||
"node-fetch": "^2.0.0", | "node-fetch": "^2.0.0", | ||
"parcel-bundler": "^1.5.1", | "parcel-bundler": "^1.5.1", | ||
"socket.io": "^2.0.4" | "socket.io": "^2.0.4" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"babel-eslint": "^8.2.1", | "babel-eslint": "^8.2.1", | ||
"babel-plugin-transform-react-jsx": "^6.24.1", | |||
"babel-preset-es2015": "^6.24.1", | "babel-preset-es2015": "^6.24.1", | ||
"eslint": "^4.17.0", | "eslint": "^4.17.0", | ||
"eslint-config-airbnb-base": "^12.1.0", | "eslint-config-airbnb-base": "^12.1.0", | ||
... | ... |
Please register or sign in to comment