@supercheck/cli 0.1.1-beta.3 → 0.1.1-rc.1
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/README.md +9 -0
- package/dist/bin/supercheck.js +1 -1
- package/dist/bin/supercheck.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supercheck/cli",
|
|
3
|
-
"version": "0.1.1-
|
|
3
|
+
"version": "0.1.1-rc.1",
|
|
4
4
|
"description": "Open-Source Testing, Monitoring, and Reliability — as Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"monitoring",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"license": "Supercheck Community License",
|
|
26
26
|
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
27
|
+
"access": "public",
|
|
28
|
+
"tag": "latest"
|
|
28
29
|
},
|
|
29
30
|
"engines": {
|
|
30
31
|
"node": ">=18.0.0"
|
|
@@ -52,6 +53,8 @@
|
|
|
52
53
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
53
54
|
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
|
|
54
55
|
"test:cov": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
|
|
56
|
+
"release:latest": "npm run build && npm test && npm publish --tag latest --access public",
|
|
57
|
+
"release:rc-tag": "npm dist-tag add @supercheck/cli@$npm_package_version rc",
|
|
55
58
|
"supercheck": "tsx src/bin/supercheck.ts"
|
|
56
59
|
},
|
|
57
60
|
"dependencies": {
|