We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fc51c commit 4d30dc6Copy full SHA for 4d30dc6
2 files changed
.github/workflows/build.yml
@@ -26,6 +26,6 @@ jobs:
26
run: npm run build
27
- name: Publish to npm
28
if: github.ref == 'refs/heads/main'
29
- env:
30
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
- run: npm publish
+ uses: JS-DevTools/npm-publish@v3
+ with:
+ token: ${{ secrets.NPM_TOKEN }}
package.json
@@ -4,7 +4,7 @@
4
"description": "php-like server but with javascript",
5
"repository": {
6
"type": "git",
7
- "url": "https://github.com/L3P3/rtjscomp"
+ "url": "git+https://github.com/L3P3/rtjscomp.git"
8
},
9
"bugs": {
10
"url": "https://github.com/L3P3/rtjscomp/issues"
@@ -18,9 +18,7 @@
18
"start": "./rtjscomp.js",
19
"build": "./build.js"
20
21
- "bin": {
22
- "rtjscomp": "./rtjscomp.js"
23
- },
+ "bin": "./rtjscomp.js",
24
"keywords": [
25
"http",
"javascript",
0 commit comments