@mapbox/gha-testing-action-release-npm-package 0.11.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 +3 -0
- package/dist/index.js +1 -0
- package/package.json +20 -0
package/README.md
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('1712318935-dev-release-03');
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mapbox/gha-testing-action-release-npm-package",
|
|
3
|
+
"version": "0.11.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/index.js"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Tests are ok, believ me :D\"",
|
|
11
|
+
"echo": "echo \"Hello!\"",
|
|
12
|
+
"build": "mkdir dist && cp index.js dist/index.js",
|
|
13
|
+
"bump": "echo \"console.log('$(date +\"%s\"-dev-release-\"%I\")');\" > index.js && git checkout -b $(date +\"%s\"-dev-release-\"%I\") && git add -A . && git commit -m bump && git push && git checkout main && git pull"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": "v20"
|
|
17
|
+
},
|
|
18
|
+
"author": "",
|
|
19
|
+
"license": "ISC"
|
|
20
|
+
}
|