From 9f81797d78ee9414b24b9b02d5972450b09049d0 Mon Sep 17 00:00:00 2001 From: John Syrinek Date: Sat, 11 Feb 2023 13:29:18 -0600 Subject: [PATCH] Bump rollup-plugin-typescript2 to fix nodejs 17 (#164) Running `npm run push-main` gives this with nodejs 17: > Package subpath './package.json' is not defined by "exports" in /home/wouldntyouliketoknow/node_modules/tslib/package.json This change incorporates [the fix](https://github.com/ezolenko/rollup-plugin-typescript2/issues/286) from rollup-plugin-typescript2 v0.31.0. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e281b932..f6837da92 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "rollup": "^2.56.2", "rollup-plugin-clear": "^2.0.7", "rollup-plugin-screeps": "^1.0.1", - "rollup-plugin-typescript2": "^0.30.0", + "rollup-plugin-typescript2": "^0.31.0", "sinon": "^6.3.5", "sinon-chai": "^3.2.0", "ts-node": "^10.2.0",