Skip to content

Commit

Permalink
πŸ› build and lint everything
Browse files Browse the repository at this point in the history
  • Loading branch information
dudeofawesome committed May 9, 2024
1 parent b0f7c3f commit ac15bf0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/create-configs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
"./bin/"
],
"scripts": {
"build": "esbuild --tsconfig=tsconfig.build.json $(glob 'src/**/*.?(c|m)[jt]s' --ignore '**/*.spec.*') --outdir=dist/ --sourcemap=inline --platform=node --target=node18",
"build": "concurrently --raw --group 'npm:build:*'",
"build:js": "esbuild --tsconfig=tsconfig.build.json $(glob 'src/**/*.?(c|m)[jt]s' --ignore '**/*.spec.*') --outdir=dist/ --sourcemap=inline --platform=node --target=node18 --format=esm",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"check": "concurrently --raw --group \"npm:test\" \"npm:lint\"",
"prelint": "npm run build",
"lint": "concurrently --raw --group \"npm:lint:*\"",
"lint:js": "eslint . --ext ts,json --cache",
"lint:js": "eslint . --ext ts,js,json --cache",
"lint:types": "tsc --noEmit --pretty",
"prepublishOnly": "npm run build",
"start": "node bin/create-configs.js",
Expand Down

0 comments on commit ac15bf0

Please sign in to comment.