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:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,5 +44,6 @@
|
|||||||
"transform"
|
"transform"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,5 +44,6 @@
|
|||||||
"rendering"
|
"rendering"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,5 +41,6 @@
|
|||||||
"plugin"
|
"plugin"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,5 +42,6 @@
|
|||||||
"music"
|
"music"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,5 +44,6 @@
|
|||||||
"rendering"
|
"rendering"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,5 +36,6 @@
|
|||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
}
|
},
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,5 +50,6 @@
|
|||||||
"game-ui"
|
"game-ui"
|
||||||
],
|
],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,5 +45,6 @@
|
|||||||
"webgl"
|
"webgl"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,5 +58,6 @@
|
|||||||
"effects"
|
"effects"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,5 +45,6 @@
|
|||||||
"webgl"
|
"webgl"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,5 +35,6 @@
|
|||||||
"open-world"
|
"open-world"
|
||||||
],
|
],
|
||||||
"author": "ESEngine",
|
"author": "ESEngine",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,5 +49,6 @@
|
|||||||
"unified-api"
|
"unified-api"
|
||||||
],
|
],
|
||||||
"author": "yhh",
|
"author": "yhh",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,5 +52,6 @@
|
|||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
}
|
},
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user