pochade-node-red 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "pochade-node-red",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "A lightweight generator for Node-RED nodes and plugins.",
5
5
  "bin": {
6
- "pochade-node-red": "bin/create-pochade-js.js"
6
+ "pochade-node-red": "./bin/create-pochade-js.js"
7
7
  },
8
8
  "repository": {
9
9
  "type": "git",
@@ -31,4 +31,4 @@
31
31
  "bin/",
32
32
  "template/"
33
33
  ]
34
- }
34
+ }
@@ -15,9 +15,8 @@
15
15
  "scripts": {
16
16
  "test": "echo \"Error: no test specified\" && exit 1",
17
17
  "install-plugin": "SRC=$PWD && echo \"Installing from $SRC\" && test -d $HOME/.node-red && (cd $HOME/.node-red && npm install $SRC) || (echo 'Error: $HOME/.node-red not found. Please initialize Node-RED first.' && exit 1)",
18
- "watch": "nodemon --watch src -e js,html --exec \"npm run install-plugin && npm run restart-node-red\"",
19
- "start-node-red": "node-red -u $HOME/.node-red",
20
- "restart-node-red": "pkill -f 'node-red' || true && sleep 2 && node-red -u $HOME/.node-red"
18
+ "watch": "./watch.sh",
19
+ "start-node-red": "node-red -u $HOME/.node-red"
21
20
  },
22
21
  "devDependencies": {
23
22
  "nodemon": "^2.0.22"
File without changes
File without changes