fix: add private:true to packages not meant for npm (#345)

* fix(ci): run on all PRs with conditional skip

- Remove paths filter from pull_request trigger
- Add check-changes job to detect code changes
- Skip full CI if no code files changed
- Satisfies branch protection while avoiding unnecessary builds

* fix: add private:true to packages not meant for npm

Prevents changesets from trying to publish internal packages:
- engine/* (8 packages)
- rendering/* (8 packages)
- physics/* (2 packages)
- streaming/* (1 package)
- tools/sdk, tools/worker-generator
This commit is contained in:
YHH
2025-12-26 17:45:00 +08:00
committed by GitHub
parent ec72df7af5
commit a049bbe2f5
21 changed files with 754 additions and 733 deletions

View File

@@ -48,5 +48,6 @@
"dependencies": { "dependencies": {
"@types/pako": "^2.0.4", "@types/pako": "^2.0.4",
"pako": "^2.1.0" "pako": "^2.1.0"
} },
"private": true
} }

View File

@@ -44,5 +44,6 @@
"transform" "transform"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -44,5 +44,6 @@
"rendering" "rendering"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -46,5 +46,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/platform-common" "directory": "packages/platform-common"
} },
"private": true
} }

View File

@@ -57,5 +57,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/platform-web" "directory": "packages/platform-web"
} },
"private": true
} }

View File

@@ -52,5 +52,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/platform-wechat" "directory": "packages/platform-wechat"
} },
"private": true
} }

View File

@@ -41,5 +41,6 @@
"plugin" "plugin"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -52,5 +52,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/script-runtime" "directory": "packages/script-runtime"
} },
"private": true
} }

View File

@@ -61,5 +61,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/physics-rapier2d" "directory": "packages/physics-rapier2d"
} },
"private": true
} }

View File

@@ -27,5 +27,6 @@
"rimraf": "^5.0.0", "rimraf": "^5.0.0",
"tsup": "^8.0.0", "tsup": "^8.0.0",
"typescript": "^5.0.0" "typescript": "^5.0.0"
} },
"private": true
} }

View File

@@ -42,5 +42,6 @@
"music" "music"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -44,5 +44,6 @@
"rendering" "rendering"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -36,5 +36,6 @@
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
} },
"private": true
} }

View File

@@ -50,5 +50,6 @@
"game-ui" "game-ui"
], ],
"author": "", "author": "",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -45,5 +45,6 @@
"webgl" "webgl"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -58,5 +58,6 @@
"effects" "effects"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -45,5 +45,6 @@
"webgl" "webgl"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -56,5 +56,6 @@
"type": "git", "type": "git",
"url": "https://github.com/esengine/esengine.git", "url": "https://github.com/esengine/esengine.git",
"directory": "packages/tilemap" "directory": "packages/tilemap"
} },
"private": true
} }

View File

@@ -35,5 +35,6 @@
"open-world" "open-world"
], ],
"author": "ESEngine", "author": "ESEngine",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -49,5 +49,6 @@
"unified-api" "unified-api"
], ],
"author": "yhh", "author": "yhh",
"license": "MIT" "license": "MIT",
"private": true
} }

View File

@@ -52,5 +52,6 @@
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
} },
"private": true
} }