1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: Fix generating @k8slens/node-fetch

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-04-14 10:07:27 -04:00
parent 430bebaa6f
commit ecdb14c692
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [

View File

@ -4,7 +4,7 @@ export default {
entry: "./index.ts",
output: {
path: path.resolve("dist"),
filename: "index.js",
filename: "index.cjs",
library: {
type: "commonjs",
},