Skip to content

Commit f340ba9

Browse files
authored
Merge pull request #1334 from melonjs/chore/spine-plugin-v2
Bump spine-plugin to 2.0.0
2 parents 37eaf7f + cf8152e commit f340ba9

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- melonjs
1212
- debug-plugin
1313
- tiled-inflate-plugin
14+
- spine-plugin
1415
- create-melonjs
1516
dry-run:
1617
description: "Dry run (skip actual publish)"
@@ -61,6 +62,9 @@ jobs:
6162
elif [ "${{ inputs.package }}" = "tiled-inflate-plugin" ]; then
6263
echo "dir=packages/tiled-inflate-plugin" >> "$GITHUB_OUTPUT"
6364
echo "build_cmd=pnpm clean && pnpm build" >> "$GITHUB_OUTPUT"
65+
elif [ "${{ inputs.package }}" = "spine-plugin" ]; then
66+
echo "dir=packages/spine-plugin" >> "$GITHUB_OUTPUT"
67+
echo "build_cmd=pnpm clean && pnpm build" >> "$GITHUB_OUTPUT"
6468
elif [ "${{ inputs.package }}" = "create-melonjs" ]; then
6569
echo "dir=packages/create-melonjs" >> "$GITHUB_OUTPUT"
6670
echo "build_cmd=echo 'No build step needed'" >> "$GITHUB_OUTPUT"

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
"publish-debug-plugin": "gh workflow run publish.yml -f package=debug-plugin",
1717
"publish-debug-plugin:dry": "gh workflow run publish.yml -f package=debug-plugin -f dry-run=true",
1818
"publish-tiled-inflate-plugin": "gh workflow run publish.yml -f package=tiled-inflate-plugin",
19-
"publish-tiled-inflate-plugin:dry": "gh workflow run publish.yml -f package=tiled-inflate-plugin -f dry-run=true"
19+
"publish-tiled-inflate-plugin:dry": "gh workflow run publish.yml -f package=tiled-inflate-plugin -f dry-run=true",
20+
"publish-spine-plugin": "gh workflow run publish.yml -f package=spine-plugin",
21+
"publish-spine-plugin:dry": "gh workflow run publish.yml -f package=spine-plugin -f dry-run=true"
2022
},
2123
"packageManager": "pnpm@10.32.1",
2224
"dependencies": {

packages/spine-plugin/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.6.0
3+
## 2.0.0
44

55
### Changed
66
- migrated into the melonJS monorepo

packages/spine-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ me.loader.preload(DataManifest, async function() {
119119
120120
| @melonjs/spine-plugin | melonJS | spine-runtime |
121121
|---|---|---|
122-
| v1.6.x | v18.2.x (or higher) | v4.2.x |
122+
| v2.0.x | v18.2.x (or higher) | v4.2.x |
123123
| v1.5.x | v15.12.x — v18.0.x | v4.1, v4.2-beta |
124124
125125
## Questions, need help ?

packages/spine-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@melonjs/spine-plugin",
3-
"version": "1.6.0",
3+
"version": "2.0.0",
44
"description": "melonJS Spine plugin",
55
"homepage": "https://www.npmjs.com/package/@melonjs/spine-plugin",
66
"type": "module",

0 commit comments

Comments
 (0)