Skip to content

Commit

Permalink
feat: prepare for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Jan 2, 2021
1 parent 835de4f commit 17e2199
Show file tree
Hide file tree
Showing 216 changed files with 9,270 additions and 700 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"parserOptions": { "project": "./tsconfig.*?.json" },
"rules": {}
"rules": {

}
},
{
"files": ["*.js", "*.jsx"],
Expand Down
7 changes: 6 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
module.exports = {
projects: ['<rootDir>/packages/core', '<rootDir>/packages/classes'],
projects: [
'<rootDir>/packages/core',
'<rootDir>/packages/classes',
'<rootDir>/packages/integration-test',
'<rootDir>/packages/pojos',
],
};
44 changes: 36 additions & 8 deletions migrations.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,46 @@
{
"migrations": [
{
"version": "10.4.5",
"description": "Update the 'update' npm script to invoke nx migrate",
"factory": "./src/migrations/update-10-4-0/update-script-to-invoke-nx-migrate",
"version": "11.0.0-beta.3",
"description": "Update the decoration script when using Angular CLI",
"factory": "./src/migrations/update-11-0-0/update-decorate-angular-cli",
"package": "@nrwl/workspace",
"name": "update-script-to-invoke-nx-migrate"
"name": "update-decorate-angular-cli"
},
{
"version": "10.4.6",
"description": "Update the decoration script when using Angular CLI",
"factory": "./src/migrations/update-10-4-0/update-decorate-angular-cli",
"version": "11.0.0-beta.3",
"description": "Update the @types/node package",
"factory": "./src/migrations/update-11-0-0/update-node-types",
"package": "@nrwl/workspace",
"name": "update-decorate-angular-cli"
"name": "update-node-types"
},
{
"version": "11.0.0-beta.3",
"description": "Rename tools/schematics into tools/generators",
"factory": "./src/migrations/update-11-0-0/rename-workspace-schematics",
"package": "@nrwl/workspace",
"name": "rename-workspace-schematics"
},
{
"version": "11.0.0-beta.15",
"description": "Adds `outputs` based on builders",
"factory": "./src/migrations/update-11-0-0/add-outputs-in-workspace",
"package": "@nrwl/workspace",
"name": "add-outputs-in-workspace"
},
{
"version": "11.0.0",
"description": "Check that the right update command is used",
"factory": "./src/migrations/update-11-0-0/update-command-check",
"package": "@nrwl/workspace",
"name": "update-command-check"
},
{
"version": "11.0.2",
"description": "Rename the workspace-schematic script into workspace-generator script",
"factory": "./src/migrations/update-11-0-0/rename-workspace-schematic-script",
"package": "@nrwl/workspace",
"name": "rename-workspace-schematic-script"
}
]
}
8 changes: 7 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@
"classes": {
"tags": []
},
"models": {
"types": {
"tags": []
},
"integration-test": {
"tags": []
},
"pojos": {
"tags": []
}
},
Expand Down
Loading

0 comments on commit 17e2199

Please sign in to comment.