fixes a dependency problem that causes ble to not work, pins all dependencies
This commit is contained in:
parent
fae38b58fb
commit
ab02153c2d
|
|
@ -59,7 +59,7 @@ update_branch() {
|
|||
sudo git reset --hard origin/$CURRENT_BRANCH
|
||||
|
||||
print "Updating Runtime dependencies..."
|
||||
sudo npm install
|
||||
sudo npm ci
|
||||
sudo npm run build
|
||||
|
||||
print "Starting Open Rowing Monitor..."
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
43
package.json
43
package.json
|
|
@ -25,27 +25,30 @@
|
|||
"pre-commit": "npm run lint && npm test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abandonware/bleno": "^0.5.1-4",
|
||||
"@abandonware/noble": "^1.9.2-15",
|
||||
"ant-plus": "^0.1.24",
|
||||
"finalhandler": "^1.1.2",
|
||||
"loglevel": "^1.8.0",
|
||||
"nosleep.js": "^0.12.0",
|
||||
"onoff": "^6.0.3",
|
||||
"serve-static": "^1.14.1",
|
||||
"ws": "^8.3.0",
|
||||
"xml2js": "^0.4.23"
|
||||
"@abandonware/bleno": "0.5.1-4",
|
||||
"@abandonware/noble": "1.9.2-15",
|
||||
"ant-plus": "0.1.24",
|
||||
"finalhandler": "1.1.2",
|
||||
"loglevel": "1.8.0",
|
||||
"nosleep.js": "0.12.0",
|
||||
"onoff": "6.0.3",
|
||||
"serve-static": "1.14.2",
|
||||
"ws": "8.4.0",
|
||||
"xml2js": "0.4.23"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@abandonware/bluetooth-hci-socket": "0.5.3-7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-config-standard": "^16.0.3",
|
||||
"eslint-plugin-import": "^2.25.3",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^5.2.0",
|
||||
"markdownlint-cli": "^0.30.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"simple-git-hooks": "^2.7.0",
|
||||
"snowpack": "^3.8.8",
|
||||
"uvu": "^0.5.2"
|
||||
"eslint": "7.32.0",
|
||||
"eslint-config-standard": "16.0.3",
|
||||
"eslint-plugin-import": "2.25.3",
|
||||
"eslint-plugin-node": "11.1.0",
|
||||
"eslint-plugin-promise": "5.2.0",
|
||||
"markdownlint-cli": "0.30.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
"simple-git-hooks": "2.7.0",
|
||||
"snowpack": "3.8.8",
|
||||
"uvu": "0.5.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue