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:
@@ -1,54 +1,55 @@
|
||||
{
|
||||
"name": "@esengine/fairygui",
|
||||
"version": "1.0.0",
|
||||
"description": "FairyGUI ECS integration - FairyGUI Editor compatible UI system",
|
||||
"esengine": {
|
||||
"plugin": true,
|
||||
"pluginExport": "FGUIPlugin",
|
||||
"editorPackage": "@esengine/fairygui-editor",
|
||||
"category": "ui",
|
||||
"isEngineModule": true
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"build:watch": "tsup --watch",
|
||||
"type-check": "tsc --noEmit",
|
||||
"clean": "rimraf dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@esengine/asset-system": "workspace:*",
|
||||
"@esengine/ecs-framework-math": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@esengine/ecs-framework": "workspace:*",
|
||||
"@esengine/engine-core": "workspace:*",
|
||||
"@esengine/ecs-engine-bindgen": "workspace:*",
|
||||
"@esengine/material-system": "workspace:*",
|
||||
"@esengine/build-config": "workspace:*",
|
||||
"rimraf": "^5.0.5",
|
||||
"tsup": "^8.0.0",
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"keywords": [
|
||||
"ecs",
|
||||
"fairygui",
|
||||
"ui",
|
||||
"webgpu",
|
||||
"game-ui"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT"
|
||||
"name": "@esengine/fairygui",
|
||||
"version": "1.0.0",
|
||||
"description": "FairyGUI ECS integration - FairyGUI Editor compatible UI system",
|
||||
"esengine": {
|
||||
"plugin": true,
|
||||
"pluginExport": "FGUIPlugin",
|
||||
"editorPackage": "@esengine/fairygui-editor",
|
||||
"category": "ui",
|
||||
"isEngineModule": true
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"build:watch": "tsup --watch",
|
||||
"type-check": "tsc --noEmit",
|
||||
"clean": "rimraf dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@esengine/asset-system": "workspace:*",
|
||||
"@esengine/ecs-framework-math": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@esengine/ecs-framework": "workspace:*",
|
||||
"@esengine/engine-core": "workspace:*",
|
||||
"@esengine/ecs-engine-bindgen": "workspace:*",
|
||||
"@esengine/material-system": "workspace:*",
|
||||
"@esengine/build-config": "workspace:*",
|
||||
"rimraf": "^5.0.5",
|
||||
"tsup": "^8.0.0",
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"keywords": [
|
||||
"ecs",
|
||||
"fairygui",
|
||||
"ui",
|
||||
"webgpu",
|
||||
"game-ui"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"private": true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user