Skip to content

Commit 54ca9f3

Browse files
committed
fix(samples): give playgrounds their own package names
Two playgrounds shipped duplicate @cpp.js/sample-* names (backend-nodejs and backend-nodejs-multithread both claimed sample-backend-nodejs-wasm; the multithread vite playground claimed playground-web-vite). The sample-* names wrongly pulled them into CI's build:samples, where the geo-stack wasm dists do not exist — previously masked by the silent exit-0 run path, now an honest failure on build-linux.
1 parent 406b5e3 commit 54ca9f3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

cppjs-samples/cppjs-playground-backend-nodejs-multithread/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@cpp.js/sample-backend-nodejs-wasm",
2+
"name": "@cpp.js/playground-backend-nodejs-multithread",
33
"version": "2.0.0-beta.23",
44
"private": true,
55
"description": "Cpp.js - Node.js webassembly sample",

cppjs-samples/cppjs-playground-backend-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@cpp.js/sample-backend-nodejs-wasm",
2+
"name": "@cpp.js/playground-backend-nodejs",
33
"version": "2.0.0-beta.23",
44
"private": true,
55
"description": "Cpp.js - Node.js webassembly sample",

cppjs-samples/cppjs-playground-web-vite-multithread/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@cpp.js/playground-web-vite",
2+
"name": "@cpp.js/playground-web-vite-multithread",
33
"version": "2.0.0-beta.23",
44
"private": true,
55
"description": "Cpp.js Vite Playground",

0 commit comments

Comments
 (0)