Skip to content

Commit

Permalink
fix: correct bad merge commit causing invalid package.json exports (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
bienzaaron authored Dec 31, 2024
1 parent 4aa49e4 commit dc50b94
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
"prebuildify": "cross-env prebuildify --napi --strip --target $(node -v)",
"prebuildify:ci": "cross-env prebuildify --napi --strip --target $NODE_VERSION",
"install": "node-gyp-build",
"build": "npm run prebuildify && tsc && npm run gen-esm-wrapper",
"build:ci": "npm run prebuildify:ci && tsc && npm run gen-esm-wrapper",
"build": "npm run prebuildify && tsup",
"build:ci": "npm run prebuildify:ci && tsup",
"lint": "standardx \"**/*.{ts,mjs,js,cjs}\" | snazzy",
"test-only": "tap --ts",
"test": "npm run lint && npm run build && npm run test-only",
"test:ci": "npm run lint && npm run build:ci && npm run test-only",
"gen-esm-wrapper": "gen-esm-wrapper . dist/esm-wrapper.mjs",
"prepack": "npm run build"
},
"repository": {
Expand Down Expand Up @@ -73,7 +72,6 @@
"@typescript-eslint/parser": "^6.14.0",
"abort-controller": "^3.0.0",
"cross-env": "^7.0.3",
"gen-esm-wrapper": "^1.1.3",
"prebuildify": "^6.0.1",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
Expand Down

0 comments on commit dc50b94

Please sign in to comment.