Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:
strategy:
matrix:
node-version: [
10,
12,
14,
#10,
#12,
#14,
20,
]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@
}
},
"short_name": "Virtual",
"version": "0.11.0"
"version": "2.0.0"
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "virtual-things-adapter",
"version": "0.11.0",
"version": "2.0.0",
"description": "WebThings Gateway Virtual Things Adapter",
"main": "index.js",
"scripts": {
Expand All @@ -18,12 +18,12 @@
},
"dependencies": {
"mkdirp": "^1.0.4",
"node-persist": "^3.1.0",
"uuid": "^8.3.1"
"node-persist": "^3.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0"
"eslint": "^7.32.0"
},
"files": [
"LICENSE",
Expand Down
3 changes: 3 additions & 0 deletions package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ rm -rf node_modules

npm install --production

# Remove internal package-lock cache which can cause checksum errors at runtime
rm -f node_modules/.package-lock.json

shasum --algorithm 256 manifest.json package.json *.js LICENSE > SHA256SUMS
find static -type f -exec shasum --algorithm 256 {} \; >> SHA256SUMS

Expand Down
Loading