Skip to content

Commit

Permalink
feature: migration of popup alerts to LCD display & minimized building (
Browse files Browse the repository at this point in the history
  • Loading branch information
cmotelet authored Aug 21, 2023
1 parent 01c2fec commit 6a938f0
Show file tree
Hide file tree
Showing 10 changed files with 727 additions and 605 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ jspm_packages

# Optional REPL history
.node_repl_history

# file generated by webpack
public/index.html
public/signalk-autopilot.min.js
public/signalk-autopilot.min.js.map
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"scripts": {
"test": "$NODE $npm_package_main",
"create-release": "github-create-release --owner signalk --repository signalk-autopilot",
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release"
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release",
"start": "webpack serve --config webpack.dev.config.js",
"build": "webpack --config webpack.prod.config.js --progress",
"prepublishOnly": "npm run build"
},
"keywords": [
"signalk-node-server-plugin",
Expand All @@ -18,7 +21,13 @@
"lodash": "^4.17.15"
},
"devDependencies": {
"@signalk/github-create-release": "^1.0.1"
"@signalk/github-create-release": "^1.0.1",
"copy-webpack-plugin": "^11.0.0",
"html-minimizer-webpack-plugin": "^4.4.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"repository": {
"type": "git",
Expand All @@ -28,4 +37,4 @@
"appIcon": "./appIcon-72x72.png",
"displayName": "Signal K autopilot"
}
}
}
Loading

0 comments on commit 6a938f0

Please sign in to comment.