diff --git a/package.json b/package.json index 912d5648700..30772b5f337 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "scripts": { "test": "pnpm run generate && jest", "test:integration": "jest --config integration/jest.config.js", + "dev": "nx run-many --target=dev", "start": "nx run site:start", "start:playroom": "nx run site:start:playroom", "build": "nx run braid-design-system:build", @@ -47,7 +48,7 @@ "@babel/runtime": "^7.18.0", "@changesets/cli": "^2.22.0", "@changesets/get-github-info": "^0.5.0", - "@crackle/cli": "^0.15.0", + "@crackle/cli": "^0.15.2", "@manypkg/cli": "^0.19.1", "@octokit/rest": "^18.12.0", "@types/fs-extra": "^9.0.13", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ae730075fad..f028aa6ebc2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -50,8 +50,8 @@ importers: specifier: ^0.5.0 version: 0.5.0 '@crackle/cli': - specifier: ^0.15.0 - version: 0.15.0(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2) + specifier: ^0.15.2 + version: 0.15.2(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2) '@manypkg/cli': specifier: ^0.19.1 version: 0.19.1 @@ -3171,11 +3171,11 @@ packages: - supports-color dev: false - /@crackle/cli@0.15.0(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2): - resolution: {integrity: sha512-t8+Xlm2sJ1ruvXWSyR+1Ijn/xsz705/3UBI64yXQPwVrKZ2fK3BLYY2FpiHjxYfaW4gGa3KDrPf9/1UN8pYPLQ==} + /@crackle/cli@0.15.2(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2): + resolution: {integrity: sha512-7zKTBN5S3n45itP67YSsHGpcjOayezqbGUDVEpg+xoESdlI2Vs07d1DMgWztNuT7z+Se+MWgWQcYaakOL8+PQA==} hasBin: true dependencies: - '@crackle/core': 0.33.0(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2) + '@crackle/core': 0.33.1(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2) yargs: 17.6.2 transitivePeerDependencies: - '@swc/helpers' @@ -3192,8 +3192,8 @@ packages: - webpack dev: false - /@crackle/core@0.33.0(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2): - resolution: {integrity: sha512-bbhCw8S/IQG615/TTFWg/Zz53PjkxAXiHOq2kN44PVVYbMku7x1Qz+4kg9udXVKU+pbGZv4EFOYn66Gli14zUw==} + /@crackle/core@0.33.1(@types/node@18.13.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2)(webpack@5.88.2): + resolution: {integrity: sha512-nDBljqHyc4EiVmB1AlUN8JxZNIsJONi3yGOUVJDB5zUEBThnanjtuj7kOdtdoyLB+cg2xSMk48Ax83TnltTcaQ==} peerDependencies: typescript: '>=5.2.2' dependencies: diff --git a/site/src/playroom.components.ts b/site/src/playroom.components.ts index b706a225b42..aabbfd35fd6 100644 --- a/site/src/playroom.components.ts +++ b/site/src/playroom.components.ts @@ -1,3 +1,3 @@ import 'braid-src/entries/reset'; -export * from 'braid-src/entries/playroom/components'; +export * from 'braid-design-system/playroom/components'; diff --git a/site/src/playroom.frame.ts b/site/src/playroom.frame.ts index 3b7c22336d8..482b512f89f 100644 --- a/site/src/playroom.frame.ts +++ b/site/src/playroom.frame.ts @@ -1,3 +1,3 @@ import 'braid-src/entries/reset'; -export { default } from 'braid-src/entries/playroom/FrameComponent'; +export { default } from 'braid-design-system/playroom/FrameComponent'; diff --git a/site/src/playroom.scope.ts b/site/src/playroom.scope.ts index 397fc182a7e..c8971a9ae74 100644 --- a/site/src/playroom.scope.ts +++ b/site/src/playroom.scope.ts @@ -1,3 +1,3 @@ import 'braid-src/entries/reset'; -export { default } from 'braid-src/entries/playroom/scope'; +export { default } from 'braid-design-system/playroom/scope';