balena-settings-client 5.0.0 → 5.0.1-drop-appveyor-e091801f3412c5e860d10e0d5a20b4684d148c8a
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 +5 -0
- package/package.json +2 -2
- package/appveyor.yml +0 -30
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v5.0.1
|
|
8
|
+
## (2022-05-03)
|
|
9
|
+
|
|
10
|
+
* Stop running tests on appveyor [Thodoris Greasidis]
|
|
11
|
+
|
|
7
12
|
# v5.0.0
|
|
8
13
|
## (2022-05-03)
|
|
9
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-settings-client",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1-drop-appveyor-e091801f3412c5e860d10e0d5a20b4684d148c8a",
|
|
4
4
|
"description": "Balena client application shared settings",
|
|
5
5
|
"main": "build/settings.js",
|
|
6
6
|
"types": "build/settings.d.ts",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
]
|
|
77
77
|
},
|
|
78
78
|
"versionist": {
|
|
79
|
-
"publishedAt": "2022-05-03T07:
|
|
79
|
+
"publishedAt": "2022-05-03T07:20:36.865Z"
|
|
80
80
|
}
|
|
81
81
|
}
|
package/appveyor.yml
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# appveyor file
|
|
2
|
-
# http://www.appveyor.com/docs/appveyor-yml
|
|
3
|
-
|
|
4
|
-
init:
|
|
5
|
-
- git config --global core.autocrlf input
|
|
6
|
-
|
|
7
|
-
cache:
|
|
8
|
-
- C:\Users\appveyor\.node-gyp
|
|
9
|
-
- '%AppData%\npm-cache'
|
|
10
|
-
|
|
11
|
-
# what combinations to test
|
|
12
|
-
environment:
|
|
13
|
-
matrix:
|
|
14
|
-
- nodejs_version: 'stable'
|
|
15
|
-
- nodejs_version: 8
|
|
16
|
-
- nodejs_version: 6
|
|
17
|
-
|
|
18
|
-
install:
|
|
19
|
-
- ps: Install-Product node $env:nodejs_version x64
|
|
20
|
-
- npm install -g npm@4
|
|
21
|
-
- set PATH=%APPDATA%\npm;%PATH%
|
|
22
|
-
- npm install
|
|
23
|
-
|
|
24
|
-
build: off
|
|
25
|
-
|
|
26
|
-
test_script:
|
|
27
|
-
- node --version
|
|
28
|
-
- npm --version
|
|
29
|
-
- ps: npm test
|
|
30
|
-
- cmd: npm test
|