File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" ,
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" : {
You can’t perform that action at this time.
0 commit comments