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

fix dist file extension

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2023-02-01 08:38:05 +02:00
parent 57ccb92b41
commit a5d830fce1

View File

@ -2,15 +2,15 @@
"name": "@k8slens/ensure-binaries",
"version": "6.4.0-beta.10",
"description": "CLI for downloading configured versions of the bundled versions of CLIs",
"main": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/",
"build": "swc ./src/index.ts -o ./dist/index.mjs",
"build": "swc ./src/index.ts -o ./dist/index.js",
"prepare:dev": "npm run build"
},
"bin": {
"ensure-binaries": "./dist/index.mjs"
"ensure-binaries": "./dist/index.js"
},
"files": [
"dist"