Skip to content

Commit d1e3ca4

Browse files
Fix tarballs (#1)
1 parent 068eee6 commit d1e3ca4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- run: pnpm install
2020
- run: pnpm run build
2121
- run: pnpm run prepack
22-
- run: pnpm publish --no-git-checks --access restricted
22+
- run: npm publish --no-git-checks --access restricted
2323
env:
2424
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2525
- run: pnpm run postpack

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ketrwu/simplelogin-cli",
33
"description": "Unofficial SimpleLogin CLI",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"author": "Kenneth Wußmann",
66
"bin": {
77
"sl": "./bin/run.js"
@@ -64,6 +64,7 @@
6464
"build": "shx rm -rf dist && tsc -b",
6565
"lint": "eslint",
6666
"postpack": "shx rm -f oclif.manifest.json",
67+
"pack:tarballs": "oclif pack tarballs",
6768
"posttest": "pnpm run lint",
6869
"prepack": "oclif manifest && oclif readme",
6970
"test": "mocha --forbid-only \"test/**/*.test.ts\"",

0 commit comments

Comments
 (0)