diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e7c5143..0b08b63 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "loafle.nx.plugin", + "name": "unbox-x.nx.plugin", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "dockerComposeFile": "docker-compose.yml", "service": "app", diff --git a/README.md b/README.md index 382fafc..0e1e656 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ npx create-nx-workspace nx-plugin --preset=ts --pm=pnpm npx nx g @nx/js:lib packages/rust --useProjectJson=true -npx nx g @nx/js:lib packages/rust --publishable --importPath=@loafle/nx-rust --useProjectJson=true +npx nx g @nx/js:lib packages/rust --publishable --importPath=@unbox-x/nx-rust --useProjectJson=true diff --git a/nx-plugin/package.json b/nx-plugin/package.json index cfc278d..4972f41 100644 --- a/nx-plugin/package.json +++ b/nx-plugin/package.json @@ -1,5 +1,5 @@ { - "name": "@loafle/nx-plugin", + "name": "@unbox-x/nx-plugin", "version": "0.0.0", "license": "MIT", "scripts": {}, diff --git a/nx-plugin/packages/rust/jest.config.ts b/nx-plugin/packages/rust/jest.config.ts index ade637a..79345f6 100644 --- a/nx-plugin/packages/rust/jest.config.ts +++ b/nx-plugin/packages/rust/jest.config.ts @@ -10,7 +10,7 @@ const swcJestConfig = JSON.parse( swcJestConfig.swcrc = false; export default { - displayName: '@loafle/nx-rust', + displayName: '@unbox-x/nx-rust', preset: '../../jest.preset.js', testEnvironment: 'node', transform: { diff --git a/nx-plugin/packages/rust/package.json b/nx-plugin/packages/rust/package.json index 0044481..8ae6c4e 100644 --- a/nx-plugin/packages/rust/package.json +++ b/nx-plugin/packages/rust/package.json @@ -1,5 +1,5 @@ { - "name": "@loafle/nx-rust", + "name": "@unbox-x/nx-rust", "version": "0.0.1", "private": false, "repository": { diff --git a/nx-plugin/packages/rust/project.json b/nx-plugin/packages/rust/project.json index 9d8cdaf..ae3d108 100644 --- a/nx-plugin/packages/rust/project.json +++ b/nx-plugin/packages/rust/project.json @@ -1,10 +1,10 @@ { - "name": "@loafle/nx-rust", + "name": "@unbox-x/nx-rust", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/rust/src", "projectType": "library", "tags": [], - "// targets": "to see all targets run: nx show project @loafle/nx-rust --web", + "// targets": "to see all targets run: nx show project @unbox-x/nx-rust --web", "targets": { "lint": { "executor": "@nx/eslint:lint", diff --git a/nx-plugin/project.json b/nx-plugin/project.json index 79890b7..21352b5 100644 --- a/nx-plugin/project.json +++ b/nx-plugin/project.json @@ -1,5 +1,5 @@ { - "name": "@loafle/nx-plugin", + "name": "@unbox-x/nx-plugin", "$schema": "node_modules/nx/schemas/project-schema.json", "targets": { "local-registry": { diff --git a/nx-plugin/tsconfig.base.json b/nx-plugin/tsconfig.base.json index 2d1d57c..e7495c7 100644 --- a/nx-plugin/tsconfig.base.json +++ b/nx-plugin/tsconfig.base.json @@ -18,7 +18,7 @@ "target": "es2022", "customConditions": ["development"], "paths": { - "@loafle/nx-rust": ["packages/rust/src/index.ts"] + "@unbox-x/nx-rust": ["packages/rust/src/index.ts"] } } }