Skip to content

Commit

Permalink
fix: remove rollup in favor of vite
Browse files Browse the repository at this point in the history
  • Loading branch information
szkabaroli committed Oct 22, 2024
1 parent 13cc69b commit 87aedec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 27 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,20 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9

- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm
registry-url: 'https://registry.npmjs.org'

- run: pnpm i
- name: Install dependencies
run: pnpm install

- run: pnpm build

- name: Create Release Pull Request
Expand Down
13 changes: 1 addition & 12 deletions libs/overlays/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
{
"name": "overlays",
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"options": {
"main": "libs/overlays/src/index.ts",
"format": ["esm"],
"tsConfig": "libs/overlays/tsconfig.json",
"outputPath": "dist/overlays",
"generateExportsField": true
}
}
}
"targets": {}
}
13 changes: 1 addition & 12 deletions libs/primitives/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
{
"name": "primitives",
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"options": {
"main": "libs/primitives/src/index.ts",
"format": ["esm"],
"tsConfig": "libs/primitives/tsconfig.json",
"outputPath": "dist/primitives",
"generateExportsField": true
}
}
}
"targets": {}
}

0 comments on commit 87aedec

Please sign in to comment.