Skip to content

Commit

Permalink
align tools folder names
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 4, 2024
1 parent 6cbc6ba commit d7db9d2
Show file tree
Hide file tree
Showing 59 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}
}
},
"plugins": ["./tools/build-env/src/plugin/verdaccio-env.plugin.ts"],
"plugins": ["./tooling/build-env/src/plugin/verdaccio-env.plugin.ts"],
"release": {
"version": {
"preVersionCommand": "npx nx run-many -t build"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": ["tools/build-env/tsconfig.*?.json"]
"project": ["tooling/build-env/tsconfig.*?.json"]
},
"rules": {
// Nx plugins don't yet support ESM: https://github.com/nrwl/nx/issues/15682
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 11 additions & 11 deletions tools/build-env/project.json → tooling/build-env/project.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "build-env",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "tools/build-env/src",
"sourceRoot": "tooling/build-env/src",
"projectType": "library",
"implicitDependencies": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/tools/build-env",
"main": "tools/build-env/src/index.ts",
"tsConfig": "tools/build-env/tsconfig.lib.json",
"outputPath": "dist/tooling/build-env",
"main": "tooling/build-env/src/index.ts",
"tsConfig": "tooling/build-env/tsconfig.lib.json",
"assets": [
"tools/build-env/*.md",
"tooling/build-env/*.md",
{
"input": "./tools/build-env/src",
"input": "./tooling/build-env/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./tools/build-env/src",
"input": "./tooling/build-env/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./tools/build-env",
"input": "./tooling/build-env",
"glob": "generators.json",
"output": "."
},
{
"input": "./tools/build-env",
"input": "./tooling/build-env",
"glob": "executors.json",
"output": "."
}
Expand All @@ -49,13 +49,13 @@
"unit-test": {
"executor": "@nx/vite:test",
"options": {
"configFile": "tools/build-env/vite.config.ts"
"configFile": "tooling/build-env/vite.config.ts"
}
},
"integration-test": {
"executor": "@nx/vite:test",
"options": {
"configFile": "tools/build-env/vite.config.ts"
"configFile": "tooling/build-env/vite.config.ts"
}
}
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@org/build-env": ["tools/build-env/src/index.ts"],
"@org/build-env": ["tooling/build-env/src/index.ts"],
"@org/cli": ["projects/cli/src/index.ts"],
"@org/core": ["projects/core/src/index.ts"],
"@org/models": ["projects/models/src/index.ts"],
"@org/test-utils": ["testing/test-utils/src/index.ts"],
"@org/tools-utils": ["tools/tools-utils/src/index.ts"],
"@org/tools-utils": ["tooling/tools-utils/src/index.ts"],
"@org/utils": ["projects/utils/src/index.ts"]
}
},
Expand Down

0 comments on commit d7db9d2

Please sign in to comment.