@eik/cli 2.0.38 → 2.0.39
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 +7 -0
- package/package.json +14 -9
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [2.0.39](https://github.com/eik-lib/cli/compare/v2.0.38...v2.0.39) (2024-07-29)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** update dependency semver to v7.6.3 ([7c6f254](https://github.com/eik-lib/cli/commit/7c6f254e6ff37529d250dcc8dcbedac719dd5cff))
|
7
|
+
|
1
8
|
## [2.0.38](https://github.com/eik-lib/cli/compare/v2.0.37...v2.0.38) (2024-05-13)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@eik/cli",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.39",
|
4
4
|
"description": "CLI tool for publishing assets to an Eik server",
|
5
5
|
"main": "./classes/index.js",
|
6
6
|
"bin": {
|
@@ -17,16 +17,19 @@
|
|
17
17
|
"formatters"
|
18
18
|
],
|
19
19
|
"scripts": {
|
20
|
-
"test": "HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 --test-regex=.test.
|
21
|
-
"test:integration": "HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/integration/**/*.test.
|
22
|
-
"test:unit": "HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/*.test.
|
23
|
-
"test:tasks": "HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/tasks/*.test.
|
24
|
-
"test:ci": "npm run test:
|
25
|
-
"
|
20
|
+
"test": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 --test-regex=.test.mjs --test-ignore=node_modules",
|
21
|
+
"test:integration": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/integration/**/*.test.mjs",
|
22
|
+
"test:unit": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/*.test.mjs",
|
23
|
+
"test:tasks": "cross-env HTTP_PORT=0 LOG_LEVEL=fatal tap --no-coverage-report --no-cov --timeout 0 test/tasks/*.test.mjs",
|
24
|
+
"test:ci:integration": "npm run test:integration -- --jobs=1",
|
25
|
+
"test:ci:unit": "npm run test:unit -- --jobs=1",
|
26
|
+
"test:ci:tasks": "npm run test:tasks -- --jobs=1",
|
27
|
+
"test:ci": "run-s test:ci:*",
|
28
|
+
"lint": "eslint .",
|
26
29
|
"lint:fix": "eslint --fix .",
|
27
30
|
"format:check": "prettier -c .",
|
28
31
|
"format:fix": "prettier -w .",
|
29
|
-
"fix": "
|
32
|
+
"fix": "run-s lint:fix format:fix"
|
30
33
|
},
|
31
34
|
"keywords": [],
|
32
35
|
"author": "",
|
@@ -44,7 +47,7 @@
|
|
44
47
|
"node-fetch": "2.7.0",
|
45
48
|
"ora": "5.4.1",
|
46
49
|
"rimraf": "3.0.2",
|
47
|
-
"semver": "7.6.
|
50
|
+
"semver": "7.6.3",
|
48
51
|
"ssri": "8.0.1",
|
49
52
|
"tar": "6.2.1",
|
50
53
|
"yargs": "17.7.2",
|
@@ -55,6 +58,7 @@
|
|
55
58
|
"@eik/service": "1.2.98",
|
56
59
|
"@semantic-release/changelog": "6.0.3",
|
57
60
|
"@semantic-release/git": "10.0.1",
|
61
|
+
"cross-env": "7.0.3",
|
58
62
|
"eslint": "8.57.0",
|
59
63
|
"eslint-config-airbnb-base": "15.0.0",
|
60
64
|
"eslint-config-prettier": "8.10.0",
|
@@ -62,6 +66,7 @@
|
|
62
66
|
"eslint-plugin-prettier": "4.2.1",
|
63
67
|
"fastify": "3.29.5",
|
64
68
|
"fs-extra": "10.1.0",
|
69
|
+
"npm-run-all": "4.1.5",
|
65
70
|
"prettier": "2.8.8",
|
66
71
|
"semantic-release": "19.0.5",
|
67
72
|
"semantic-release-slack-bot": "3.5.3",
|