Skip to content

Commit

Permalink
build: fix build failures with updated deps/rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Nov 4, 2022
1 parent d56074c commit dafd36d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.4",
Expand All @@ -68,12 +69,12 @@
"rimraf": "^3.0.2",
"rollup": "^2.22.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-ts": "^3.0.2",
"serve": "^14.0.0",
"standardx": "^7.0.0",
"start-server-and-test": "^1.11.2",
"ts-transform-default-export": "^1.0.2",
"typescript": "^4.0.0"
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"files": [
"browser.js",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import cleanup from 'rollup-plugin-cleanup'
import ts from 'rollup-plugin-ts'
import ts from '@rollup/plugin-typescript'
import transformDefaultExport from 'ts-transform-default-export'

const output = {
Expand Down

0 comments on commit dafd36d

Please sign in to comment.