Skip to content

Commit

Permalink
build: omit src in build folder
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Lanser <[email protected]>
  • Loading branch information
Tommylans committed Oct 30, 2024
1 parent 5b97a9b commit 2ddb2c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
run: pnpm install

- name: Check formatting
run: pnpm check:style
run: pnpm style:fix

- name: Build
run: pnpm build

- name: Check types
run: pnpm check:types
run: pnpm types:check

- name: Test
run: pnpm test
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"clean": "rimraf **/build",
"clean:deps ": "pnpm clean && rimraf node_modules",
"build": "pnpm -r build",
"check:style": "pnpm biome check .",
"check:types": "pnpm build --noEmit",
"format": "pnpm check:style --write --unsafe",
"style:check": "pnpm biome check .",
"style:fix": "pnpm style:check --write --unsafe",
"types:check": "pnpm build --noEmit",
"test": "pnpm -r test",
"release": "lerna publish"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
"rootDir": "./src",
"outDir": "./build"
}
}

0 comments on commit 2ddb2c5

Please sign in to comment.