Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync to master #64

Merged
merged 3 commits into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/dev-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/commandkit' run build

- name: 🚚 Publish
run: |
cd packages/commandkit
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dev-create-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/create-commandkit' run build

- name: 🚚 Publish
run: |
cd packages/create-commandkit
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
"dev": "turbo dev",
"lint": "turbo lint && prettier ./ --check --ignore-path=.prettierignore",
"build": "turbo lint && turbo build",
"build:package": "turbo lint --filter='commandkit' && turbo build --filter='commandkit'",
"deploy:package": "turbo lint --filter='commandkit' && turbo build --filter='commandkit' && turbo deploy --filter='commandkit'",
"deploy:package-dev": "turbo lint --filter='commandkit' && turbo build --filter='commandkit' && turbo deploy-dev --filter='commandkit'",
"deploy:package": "turbo deploy:package --filter='commandkit' --filter='create-commandkit'",
"format": "prettier --write \"./{packages,apps}/**/*.{js,ts,jsx,tsx,mjs,mts,cjs,cts,css,md,mdx,json,yaml}\""
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/commandkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lint": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"deploy": "npm publish",
"deploy:package": "npm publish",
"test": "vitest",
"test:dev": "cd ./tests && node ../bin/index.mjs dev",
"test:build": "cd ./tests && node ../bin/index.mjs build",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-commandkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"lint": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"deploy": "npm publish"
"deploy:package": "npm publish"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-commandkit/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
outDir: 'dist',
skipNodeModulesBundle: true,
minifyIdentifiers: false,
minifySyntax: true,
minifySyntax: false,
minifyWhitespace: true,
keepNames: true,
clean: true,
Expand Down
3 changes: 1 addition & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"pipeline": {
"lint": {},
"build": {},
"deploy": {},
"deploy-dev": {},
"deploy:package": {},
"dev": {
"cache": false,
"persistent": true
Expand Down
Loading