Skip to content

Commit

Permalink
fix: dep issue in runner
Browse files Browse the repository at this point in the history
  • Loading branch information
arihanv committed May 20, 2024
1 parent 43b11b0 commit 219e508
Show file tree
Hide file tree
Showing 4 changed files with 216 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
node-version: '20.x'
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm install -g @rollup/rollup-linux-x64-gnu
- run: npm run build
- run: npm publish
env:
Expand Down
212 changes: 211 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
"ts-loader": "^9.5.1",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"files": [
"build"
],
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"~/*": ["./src/*"]
},
"jsx": "react",
"outDir": "./build"
"outDir": "./build",
"esModuleInterop": true
},
"extends": "@rubriclab/typescript-config/react-library",
"exclude": ["node_modules", "build", "package-lock.json"],
Expand Down

0 comments on commit 219e508

Please sign in to comment.