Skip to content

Commit

Permalink
fix(cli): Fix prepublish script (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 authored Apr 1, 2024
1 parent 22c5089 commit f035da2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@swc/cli",
"version": "0.3.11",
"version": "0.3.12",
"description": "CLI for the swc project",
"main": "lib/swc/index.js",
"scripts": {
"prepublishOnly": "pnpm build",
"types": "tsc",
"types:watch": "tsc --watch",
"build": "swc src -d lib --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"build:watch": "swc src -d lib --watch --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"build": "swc src --strip-leading-paths -d lib --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"build:watch": "swc src --strip-leading-paths -d lib --watch --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"format:src": "prettier --write src",
"format:examples": "prettier --write examples",
"format": "pnpm format:src && pnpm format:examples",
Expand Down

0 comments on commit f035da2

Please sign in to comment.