particle-commands 1.0.1 → 1.0.2
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/.circleci/config.yml +1 -1
- package/CHANGELOG.md +5 -0
- package/package.json +4 -4
package/.circleci/config.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
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.2 - 2025-06-03
|
|
7
|
+
- Update `particle-api-js` and `particle-library-manager` to remove github.com/spark dependencies
|
|
8
|
+
- Remove support of `node@12` and `node@14`
|
|
9
|
+
-
|
|
10
|
+
|
|
6
11
|
### 1.0.0 - 2024-03-13
|
|
7
12
|
- Fix return results for command site and library add
|
|
8
13
|
|
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.2",
|
|
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": "^7.4.1",
|
|
20
|
+
"particle-library-manager": "^1.0.1",
|
|
21
21
|
"semver": "^5.1.0",
|
|
22
22
|
"underscore": "^1.8.3",
|
|
23
23
|
"winreg": "^1.2.2"
|
|
@@ -87,7 +87,7 @@
|
|
|
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
89
|
"engines": {
|
|
90
|
-
"node": ">=
|
|
90
|
+
"node": ">=16.x",
|
|
91
91
|
"npm": "8.x"
|
|
92
92
|
}
|
|
93
93
|
}
|