From 68612f9968cbeec61b79ff0486649a1cd52f69dd Mon Sep 17 00:00:00 2001 From: Cody Bennett <23324155+CodyJasonBennett@users.noreply.github.com> Date: Sun, 3 Sep 2023 21:15:09 -0500 Subject: [PATCH] chore: fix CI --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 979033e9..98556e95 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,6 @@ "homepage": "https://github.com/pmndrs/three-stdlib", "repository": "https://github.com/pmndrs/three-stdlib", "license": "MIT", - "type": "module", "types": "./index.d.ts", "main": "./index.cjs", "module": "./index.js", @@ -63,7 +62,7 @@ "three": ">=0.128.0" }, "scripts": { - "build": "rimraf dist && vite build && tsc --emitDeclarationOnly && copyfiles -u 1 \"src/**/*.d.ts\" dist && copyfiles package.json README.md LICENSE dist && json -I -f dist/package.json -e \"this.private=undefined;\"", + "build": "rimraf dist && vite build && tsc --emitDeclarationOnly && copyfiles -u 1 \"src/**/*.d.ts\" dist && copyfiles package.json README.md LICENSE dist && json -I -f dist/package.json -e \"this.private=undefined;this.type=\\\"module\\\";\"", "lint": "tsc --noEmit" } }