particle-commands 1.0.3 → 1.0.4
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/CHANGELOG.md +4 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
4
4
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
### 1.0.4 - 2025-09-10
|
|
7
|
+
- Update particle-library-manager dependency to 1.0.4
|
|
8
|
+
- Update particle-api-js to 11.1.4
|
|
9
|
+
|
|
6
10
|
### 1.0.3 - 2025-08-21
|
|
7
11
|
- Update particle-library-manager to clarify license
|
|
8
12
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "particle-commands",
|
|
3
3
|
"description": "Library of UX-neutral commands that provide key functionality for developer tools",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"author": "Matthew McGowan",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/particle-iot/particle-commands/issues"
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"babel-runtime": "^6.9.2",
|
|
17
17
|
"es6-promisify": "^4.1.0",
|
|
18
18
|
"mkdirp": "^0.5.1",
|
|
19
|
-
"particle-api-js": "^
|
|
20
|
-
"particle-library-manager": "^1.0.
|
|
19
|
+
"particle-api-js": "^11.1.4",
|
|
20
|
+
"particle-library-manager": "^1.0.4",
|
|
21
21
|
"semver": "^5.1.0",
|
|
22
22
|
"underscore": "^1.8.3",
|
|
23
23
|
"winreg": "^1.2.2"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"chai": "^3.5.0",
|
|
34
34
|
"chai-as-promised": "^5.3.0",
|
|
35
35
|
"copyfiles": "^2.4.1",
|
|
36
|
-
"coveralls": "^2.
|
|
36
|
+
"coveralls-next": "^4.2.1",
|
|
37
37
|
"doctoc": "^0.15.0",
|
|
38
38
|
"eslint": "~2.2.0",
|
|
39
39
|
"eslint-config-particle": "^1.0.1",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"url": "https://github.com/particle-iot/particle-commands"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|
|
71
|
-
"
|
|
72
|
-
"preversion": "npm run lint && npm run test && npm run
|
|
71
|
+
"prepare": "npm run compile",
|
|
72
|
+
"preversion": "npm run lint && npm run test && npm run prepare",
|
|
73
73
|
"version": "npm run update-changelog",
|
|
74
74
|
"compile": "npm run compile:src && npm run copy:dotfiles",
|
|
75
75
|
"compile:src": "babel src -d dist --copy-files",
|
|
@@ -86,6 +86,11 @@
|
|
|
86
86
|
"coverage": "nyc --reporter=text --include='src/**/*.js' --temp-dir=./tmp/ --check-coverage --lines 50 npm run test:unit:silent",
|
|
87
87
|
"update-changelog": "VERSION=`node -p -e \"require('./package.json').version\"` bash -c 'read -p \"Update CHANGELOG.md for version $VERSION and press ENTER when done.\"' && git add CHANGELOG.md"
|
|
88
88
|
},
|
|
89
|
+
"overrides": {
|
|
90
|
+
"coveralls-next": {
|
|
91
|
+
"form-data": "4.0.4"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
89
94
|
"engines": {
|
|
90
95
|
"node": ">=16.x",
|
|
91
96
|
"npm": "8.x"
|