Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9bc757f
docs: updated opencode configuration
matteobruni Apr 10, 2026
ad5d6f0
feat: prepared browserslist config package
matteobruni Apr 14, 2026
79b3ea1
build: updated deps
matteobruni Apr 15, 2026
ed8a4df
build: updated browserlist config
matteobruni Apr 15, 2026
b40d8f5
chore(release): published new version
matteobruni Apr 15, 2026
2e4911f
build: updated deps
matteobruni Apr 17, 2026
4d79aa0
build: removed lerna, keeping only nx
matteobruni Apr 17, 2026
e2e1418
build: updated deps
matteobruni Apr 17, 2026
4299b52
build: updated deps
matteobruni Apr 17, 2026
a9e4c66
build: updated deps and added support for lazy
matteobruni Apr 24, 2026
ea331a9
build: updated nx configuration
matteobruni Apr 24, 2026
15afc63
chore(release): published new version
matteobruni Apr 24, 2026
06ee1da
build: updated publish workflow
matteobruni Apr 24, 2026
489cfc9
build: updated version scripts
matteobruni Apr 24, 2026
5d0be9d
build: updated version scripts
matteobruni Apr 24, 2026
3a030dd
chore(release): published new version
matteobruni Apr 24, 2026
f76c809
build: updated version
matteobruni Apr 24, 2026
df1a080
chore(release): published new version
matteobruni Apr 24, 2026
d03e32b
build: restored workspace version
matteobruni Apr 24, 2026
ca03f78
chore(deps): update pnpm/action-setup action to v6
renovate[bot] Apr 24, 2026
6ac806e
chore(release): include all packages in fixed release group and enabl…
matteobruni Apr 24, 2026
6953d78
chore(release): set releaseTagPattern for 'all' group to match existi…
matteobruni Apr 24, 2026
922aa50
Merge pull request #196 from tsparticles/renovate/pnpm-action-setup-6.x
matteobruni Apr 24, 2026
01b683b
Merge remote-tracking branch 'origin/dev' into dev
matteobruni Apr 24, 2026
8b946dd
build: fixed tsconfig version
matteobruni Apr 24, 2026
981fbd6
chore(release): published new version
matteobruni Apr 24, 2026
e3c8fed
Merge branch 'main' into dev
matteobruni Apr 24, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/node.js-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
node-version: '24'

- uses: pnpm/action-setup@v5.0.0
- uses: pnpm/action-setup@v6.0.3
with:
run_install: false

Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version: 24
registry-url: https://registry.npmjs.org

- uses: pnpm/action-setup@v5.0.0
- uses: pnpm/action-setup@v6.0.3
name: Install pnpm
with:
run_install: false
Expand Down Expand Up @@ -61,17 +61,19 @@ jobs:
- name: Publish to NPM (OIDC Auth)
run: |
TAG="${GITHUB_REF#refs/tags/}"

BASE_CMD="npx lerna publish from-package --ignore-scripts"
BASE_CMD="pnpm exec nx release publish --skip-version"

if [[ "$TAG" == *"-alpha."* ]]; then
$BASE_CMD --pre-dist-tag alpha --preid alpha
$BASE_CMD --tag=alpha
elif [[ "$TAG" == *"-beta."* ]]; then
$BASE_CMD --pre-dist-tag beta --preid beta
$BASE_CMD --tag=beta
else
$BASE_CMD
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NX_CLOUD_DISTRIBUTED_EXECUTION: false

- name: Stop Nx Cloud Session
run: npx nx fix-ci
if: always()
if: always()
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
node_modules/
dist
.DS_Store
lerna-debug.log
*-debug.log
.idea

.nx/cache
.nx/workspace-data
.nx/polygraph
.claude/worktrees
.claude/settings.local.json
.claude/settings.local.json
Loading