b13-rocket 0.5.0 → 0.7.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/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "b13-rocket",
|
|
3
3
|
"description": "FE CLI build tool",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.2",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=v16.13.0",
|
|
7
7
|
"npm": ">=6.4.1",
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"rocket": "node ./index.js"
|
|
17
17
|
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"rocket": "./index.js"
|
|
20
|
+
},
|
|
18
21
|
"main": "index.js",
|
|
19
22
|
"dependencies": {
|
|
20
23
|
"@babel/core": "7",
|
package/.gitlab-ci.yml
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
image: node:16
|
|
2
|
-
|
|
3
|
-
stages:
|
|
4
|
-
- deploy
|
|
5
|
-
|
|
6
|
-
deploy:
|
|
7
|
-
stage: deploy
|
|
8
|
-
rules:
|
|
9
|
-
- if: $CI_COMMIT_TAG
|
|
10
|
-
script:
|
|
11
|
-
# Ensure tag is set as version
|
|
12
|
-
- npm version $CI_COMMIT_TAG --no-git-tag-version --allow-same-version
|
|
13
|
-
- echo "//${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}">.npmrc
|
|
14
|
-
- npm publish
|