Skip to content

Commit c9e31d0

Browse files
committed
build: update rollup dev dependencies
1 parent 0695a7c commit c9e31d0

File tree

3 files changed

+46
-40
lines changed

3 files changed

+46
-40
lines changed

package-lock.json

Lines changed: 40 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@
1616
},
1717
"license": "Apache-2.0",
1818
"author": "Justin Poehnelt",
19+
"main": "dist/index.js",
20+
"types": "dist/index.d.ts",
1921
"files": [
2022
"dist/*"
2123
],
22-
"main": "dist/index.js",
23-
"types": "dist/index.d.ts",
2424
"scripts": {
25+
"docs": "typedoc src/index.ts",
2526
"format": "eslint . --fix",
2627
"lint": "eslint .",
2728
"prepare": "rm -rf dist && rollup -c",
28-
"test": "jest src/*",
29-
"docs": "typedoc src/index.ts"
29+
"test": "jest src/*"
3030
},
3131
"devDependencies": {
32+
"@rollup/plugin-typescript": "^8.3.0",
3233
"@types/google.maps": "^3.46.1",
3334
"@types/jest": "^27.0.2",
3435
"@typescript-eslint/eslint-plugin": ">=4.33.0",
@@ -40,7 +41,6 @@
4041
"jest": "^27.3.1",
4142
"prettier": "^2.4.1",
4243
"rollup": "^2.60.0",
43-
"rollup-plugin-typescript2": "^0.31.0",
4444
"ts-jest": "^27.0.7",
4545
"typedoc": "^0.22.9",
4646
"typescript": "^4.4.4"

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import typescript from "rollup-plugin-typescript2";
17+
import typescript from "@rollup/plugin-typescript";
1818

1919
export default [
2020
{

0 commit comments

Comments
 (0)