Skip to content

Commit 1a1d7b5

Browse files
committed
ntc
1 parent 293815a commit 1a1d7b5

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish-packages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@ jobs:
4747
if: steps.check_version.outputs.version_changed == 'true'
4848
run: |
4949
cd packages/${{ matrix.package }}
50-
pnpm install
50+
npm install
5151
5252
- name: Build package
5353
if: steps.check_version.outputs.version_changed == 'true'
5454
run: |
5555
cd packages/${{ matrix.package }}
56-
pnpm build
56+
npm build
5757
5858
- name: Publish package
5959
if: steps.check_version.outputs.version_changed == 'true'
6060
run: |
6161
cd packages/${{ matrix.package }}
62-
pnpm publish --access public --no-git-checks
62+
npm publish --access public --no-git-checks
6363
env:
6464
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6565

packages/react-icons/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-react-hub/react-icons",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Lightweight, customizable React icon library",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -24,10 +24,10 @@
2424
"access": "public"
2525
},
2626
"scripts": {
27-
"build": "pnpm run build:cjs && pnpm run build:esm",
27+
"build": "npm run build:cjs && npm run build:esm",
2828
"build:cjs": "tsc",
2929
"build:esm": "tsc -m es6 --outDir dist/esm",
30-
"prepublishOnly": "pnpm run build",
30+
"prepublishOnly": "npm run build",
3131
"test": "echo \"No tests specified\" && exit 0"
3232
},
3333
"peerDependencies": {

0 commit comments

Comments
 (0)