Skip to content
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
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/javascript:build
run: pnpm turbo run build --filter=@thunderid/javascript

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/browser:build
run: pnpm turbo run build --filter=@thunderid/browser

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/node:build
run: pnpm turbo run build --filter=@thunderid/node

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/express:build
run: pnpm turbo run build --filter=@thunderid/express

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/react:build
run: pnpm turbo run build --filter=@thunderid/react

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -499,7 +499,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/vue:build
run: pnpm turbo run build --filter=@thunderid/vue

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -573,7 +573,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/react-router:build
run: pnpm turbo run build --filter=@thunderid/react-router

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -638,7 +638,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/tanstack-router:build
run: pnpm turbo run build --filter=@thunderid/tanstack-router

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -703,7 +703,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/nextjs:build
run: pnpm turbo run build --filter=@thunderid/nextjs

- name: 📤 Commit, Tag & Push
run: |
Expand Down Expand Up @@ -776,7 +776,7 @@ jobs:
echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: 🔨 Build
run: pnpm nx run @thunderid/nuxt:build
run: pnpm turbo run build --filter=@thunderid/nuxt

- name: 📤 Commit, Tag & Push
run: |
Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ web_modules/
.env
.env.*
!.env.example
!.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down Expand Up @@ -146,6 +147,5 @@ vite.config.ts.timestamp-*
.DS_Store
Thumbs.db

# Nx
.nx/cache
.nx/workspace-data
# Turbo
.turbo
28 changes: 0 additions & 28 deletions nx.json

This file was deleted.

24 changes: 15 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,29 @@
"wso2"
],
"scripts": {
"build": "nx run-many --target=build --all",
"clean": "nx run-many --target=clean --all && rimraf node_modules",
"format:check": "nx run-many --target=format:check --all --parallel",
"format:fix": "nx run-many --target=format:fix --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"lint:fix": "nx run-many --target=lint:fix --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"build": "turbo run build",
"clean": "turbo run clean && rimraf node_modules",
"format:check": "turbo run format:check",
"format:fix": "turbo run format:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"symlink": "node scripts/symlink.js",
"typecheck": "nx run-many --target=typecheck --all --parallel"
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"nx": "22.7.5",
"turbo": "2.10.2",
"@thunderid/eslint-plugin": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.9.0"
}
}
}
3 changes: 3 additions & 0 deletions packages/nuxt/.env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Prevents Nuxt telemetry consent prompts from hanging non-interactive build and lint processes
# (e.g. nuxt module-build, nuxt prepare running inside turbo/CI).
NUXT_TELEMETRY_DISABLED=1
1 change: 1 addition & 0 deletions packages/nuxt/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ web_modules/
.env
.env.*
!.env.example
!.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down
Loading
Loading