Skip to content

Commit

Permalink
chore: central sourcemap false command and minor base tsconfig change
Browse files Browse the repository at this point in the history
  • Loading branch information
Christiaan Landman authored and Christiaan Landman committed May 9, 2024
1 parent dcdae63 commit b8fc51d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build:packages --sourceMap false
run: pnpm build:packages:prod
- name: Publish
run: |
pnpm changeset version --no-git-tag --snapshot dev
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "index.js",
"scripts": {
"build:packages": "pnpm run --filter './packages/**' -r build",
// extra prod build command
"build:packages:prod": "pnpm build:packages --sourceMap false",
"build": "pnpm run -r build",
"ci:publish": "changeset publish && git push --follow-tags",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
Expand All @@ -15,7 +15,7 @@
"docs:start": "pnpm --filter docs start",
"format": "prettier --write .",
"lint": "eslint .",
"release": "pnpm build:packages --sourceMap false && pnpm changeset publish",
"release": "pnpm build:packages:prod && pnpm changeset publish",
"test": "pnpm run -r test"
},
"keywords": [],
Expand Down

0 comments on commit b8fc51d

Please sign in to comment.