Skip to content

Commit

Permalink
feat: support latest NX version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Feb 4, 2022
1 parent 24fd543 commit ade9bd1
Show file tree
Hide file tree
Showing 5 changed files with 1,547 additions and 2,613 deletions.
36 changes: 18 additions & 18 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"migrations": [
{
"version": "12.5.0-beta.1",
"description": "Rename the workspace-schematic script into workspace-generator script",
"factory": "./src/migrations/update-12-5-0/add-target-dependencies",
"version": "13.3.0-beta.0",
"description": "@nrwl/workspace:tsc is now @nrwl/js:tsc",
"cli": "nx",
"implementation": "./src/migrations/update-13-3-0/update-tsc-executor-location",
"package": "@nrwl/workspace",
"name": "add-target-dependencies"
"name": "13-3-0-tsc-location"
},
{
"version": "13.0.0-beta.1",
"description": "Add default base to nx.json if its not currently set",
"factory": "./src/migrations/update-13-0-0/set-default-base-if-not-set",
"version": "13.6.0-beta.0",
"description": "Remove old options that are no longer used",
"cli": "nx",
"implementation": "./src/migrations/update-13-6-0/remove-old-task-runner-options",
"package": "@nrwl/workspace",
"name": "set-default-base-if-not-set"
"name": "13-6-0-remove-old-task-runner-options"
},
{
"version": "13.0.0-beta.4",
"description": "Move global settings into nx.json, and project specific settings into workspace.json",
"version": "13.4.4-beta.0",
"cli": "nx",
"implementation": "./src/migrations/update-13-0-0/config-locations/config-locations",
"package": "@nrwl/workspace",
"name": "13-0-0-config-locations"
"description": "Create a root babel config file if it doesn't exist and using babel-jest in jest.config.js and add @nrwl/web as needed",
"factory": "./src/migrations/update-13-4-4/add-missing-root-babel-config",
"package": "@nrwl/jest",
"name": "add-missing-root-babel-config"
},
{
"version": "13.2.0",
"description": "Set --parallel=1 for existing repos to preserve the existing behavior",
"cli": "nx",
"implementation": "./src/migrations/update-13-2-0/set-parallel-default",
"package": "@nrwl/workspace",
"name": "set-parallel-default"
"version": "13.3.0-beta.0",
"description": "Update eslint-rules jest.config.js in order to support ESLint v8 exports mapping, remove category field",
"factory": "./src/migrations/update-13-3-0/eslint-8-updates",
"package": "@nrwl/linter",
"name": "eslint-8-updates"
}
]
}
19 changes: 16 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,18 @@
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"],
"cacheableOperations": [
"build",
"lint",
"test",
"e2e"
],
"accessToken": "NDE5MzEzNzgtNDA2ZC00NDE1LWE0YTktMjlmYzU2MjJhNmM1fHJlYWQtd3JpdGU=",
"parallel": 1,
"strictlyOrderedTargets": ["build", "semantic-release"]
"strictlyOrderedTargets": [
"build",
"semantic-release"
]
}
}
},
Expand All @@ -39,6 +47,11 @@
"projects": "dependencies"
}
],
"semantic-release": [{ "target": "release", "projects": "dependencies" }]
"semantic-release": [
{
"target": "release",
"projects": "dependencies"
}
]
}
}

0 comments on commit ade9bd1

Please sign in to comment.