Skip to content

Commit e675dda

Browse files
author
Gaurish Sethia
committed
Fix stuff
1 parent 82886e1 commit e675dda

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
node-version: 16
1818
registry-url: https://registry.npmjs.org/
1919
- run: npm i
20-
- run: npm run publish
20+
- run: npm run build && npm publish
2121
env:
2222
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.github
2+
node_modules
3+
src
4+
.eslintrc.js
5+
.gitignore

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elysia-ip",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"type": "module",
55
"author": {
66
"name": "Gaurish Sethia",
@@ -28,7 +28,6 @@
2828
],
2929
"scripts": {
3030
"build": "tsc --project tsconfig.esm.json",
31-
"publish": "npm run build && npm publish",
3231
"lint": "eslint . --ext .ts"
3332
},
3433
"license": "MIT",

0 commit comments

Comments
 (0)