From 3576d23347bba2ef9e4cb2704081e665fe623000 Mon Sep 17 00:00:00 2001 From: Daisuke Baba Date: Wed, 25 Apr 2018 19:43:32 +0900 Subject: [PATCH 1/3] Remove .pyc files on running `clean` task --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index a7f75ef..ca7f5a7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -49,6 +49,7 @@ gulp.task('clean', () => { './dist', '!node_modules/**/*', './*.tgz', + './**/*.pyc', ]); }); From 806df33b6dba66037ddd731a4603d595e09f48c4 Mon Sep 17 00:00:00 2001 From: Daisuke Baba Date: Wed, 25 Apr 2018 19:43:50 +0900 Subject: [PATCH 2/3] Update README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 788bf20..8b35283 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You can find the active (online) motes from the manager dialog while monitoring ![DC2274A-A SmartMesh IP™ USB Manager Dialog](images/usb-manager-dialog.jpg) -## SmartMesh IP Document +## SmartMesh IP™ Document See [SmartMesh IP™ Tools Guide(PDF)](http://cds.linear.com/docs/en/software-and-simulation/SmartMesh_IP_Tools_Guide.pdf) for SmartMesh IP™ technical details. @@ -68,6 +68,8 @@ Then restart Node-RED process. ### Uninstallation +The following command uninstalls SmartMesh SDK python executables/libraries as well as this node package. + ``` cd ~/.node-red sudo npm uninstall --unsafe-perm node-red-contrib-smartmesh @@ -97,6 +99,8 @@ cd $(npm -g root)/candy-red sudo npm uninstall --unsafe-perm node-red-contrib-smartmesh ``` +The above command uninstalls SmartMesh SDK python executables/libraries as well as this node package. + # Appendix ## How to build @@ -113,7 +117,7 @@ $ NODE_ENV=development npm pack ``` $ rm -fr node_modules; \ rm -f npm-shrinkwrap.json; \ - nodenv local 8.10.0; \ + nodenv local 8.11.1; \ npm install;npm run freeze ``` From 29208f4e692f137934016e77a71a9e74282a73a5 Mon Sep 17 00:00:00 2001 From: Daisuke Baba Date: Wed, 25 Apr 2018 19:44:28 +0900 Subject: [PATCH 3/3] Bump version --- README.md | 3 +++ npm-shrinkwrap.json | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b35283..9bdb58a 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,9 @@ $ rm -fr node_modules; \ ``` # Revision History +* 1.0.1 + - Update README + - Remove .pyc files on running `clean` task * 1.0.0 - Initial General Availability Release diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index be9019f..f0228e1 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "node-red-contrib-smartmesh", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8c6c10a..387a33c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-red-contrib-smartmesh", - "version": "1.0.0", + "version": "1.0.1", "description": "Node-RED nodes for Analog Devices' SmartMesh IP™ Motes and Manager", "license": "Apache-2.0", "repository": {