This commit is contained in:
병준 박 2025-05-06 17:22:25 +00:00
parent aa1f57ca01
commit ba73cc8752
8 changed files with 9 additions and 9 deletions

View File

@ -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",

View File

@ -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

View File

@ -1,5 +1,5 @@
{
"name": "@loafle/nx-plugin",
"name": "@unbox-x/nx-plugin",
"version": "0.0.0",
"license": "MIT",
"scripts": {},

View File

@ -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: {

View File

@ -1,5 +1,5 @@
{
"name": "@loafle/nx-rust",
"name": "@unbox-x/nx-rust",
"version": "0.0.1",
"private": false,
"repository": {

View File

@ -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",

View File

@ -1,5 +1,5 @@
{
"name": "@loafle/nx-plugin",
"name": "@unbox-x/nx-plugin",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"local-registry": {

View File

@ -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"]
}
}
}