Skip to content

Commit

Permalink
Find all misnamed Rollup configs and fix them (#2371)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher committed Mar 23, 2024
1 parent 6eded26 commit 38000cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/library-legacy/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declarations/
deploy/
doc/
lib/
rollup.config.js
rollup.config.mjs
rollup.config.types.mjs
test/.eslintrc.js
test/dist/
test/rollup.config.js
4 changes: 2 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
},
"compile:js": {
"dependsOn": ["clean", "^compile:js"],
"inputs": ["rollup.config.js", "tsconfig.*", "src/**"],
"inputs": ["rollup.config.mjs", "tsconfig.*", "src/**"],
"outputs": ["dist/**", "lib/**"]
},
"compile:typedefs": {
"dependsOn": ["clean", "^compile:typedefs"],
"inputs": ["rollup.config.types.js", "tsconfig.*", "src/**"],
"inputs": ["rollup.config.types.mjs", "tsconfig.*", "src/**"],
"outputs": ["declarations/**", "dist/**/*.d.ts", "lib/**/*.d.ts"]
},
"publish-packages": {
Expand Down

0 comments on commit 38000cb

Please sign in to comment.