Skip to content

Commit

Permalink
chore: bump projects devDependencies (#26)
Browse files Browse the repository at this point in the history
parcel
  - parcel from 2.7.0 to 2.8.2
  - typescript from 4.8.4 to 4.9.4

vite
  - typescript from 4.8.4 to 4.9.4
  - vite from 3.1.6 to 4.0.4

rollup
  - rollup 2.79.1 to 3.10.0 + configuration update
  - switch from rollup-plugin-terser to @rollup/plugin-terser
  - switch from rollup-plugin-typescript to @rollup/plugin-typescript
  • Loading branch information
tbouffard committed Jan 17, 2023
1 parent f0735a5 commit 93a4d70
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions projects/parcel-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@maxgraph/core": "*"
},
"devDependencies": {
"parcel": "~2.7.0",
"typescript": "~4.8.4"
"parcel": "~2.8.2",
"typescript": "~4.9.4"
}
}
14 changes: 7 additions & 7 deletions projects/rollup-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"@maxgraph/core": "*"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "~14.1.0",
"@rollup/plugin-node-resolve": "~15.0.1",
"@rollup/plugin-terser": "~0.3.0",
"@rollup/plugin-typescript": "~11.0.0",
"npm-run-all": "~4.1.5",
"rollup": "~2.79.1",
"rollup-plugin-terser": "~7.0.2",
"rollup-plugin-typescript": "~1.0.1",
"serve": "~14.0.1",
"tslib": "~2.4.0",
"typescript": "~4.8.4"
"rollup": "~3.10.0",
"serve": "~14.1.2",
"tslib": "~2.4.1",
"typescript": "~4.9.4"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import resolve from '@rollup/plugin-node-resolve';
import typescript from 'rollup-plugin-typescript';
import { terser } from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';
import typescript from '@rollup/plugin-typescript';

// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
Expand Down
4 changes: 2 additions & 2 deletions projects/vitejs-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@maxgraph/core": "*"
},
"devDependencies": {
"typescript": "~4.8.4",
"vite": "~3.1.6"
"typescript": "~4.9.4",
"vite": "~4.0.4"
}
}

0 comments on commit 93a4d70

Please sign in to comment.