Skip to content

Commit

Permalink
Dep Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian-McBride committed Jun 30, 2021
1 parent f734cff commit 2231b8c
Show file tree
Hide file tree
Showing 15 changed files with 9,649 additions and 7,134 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"cSpell.words": [
"esbuild"
"devkit",
"esbuild",
"esbuildnx"
]
}
4 changes: 2 additions & 2 deletions e2e/esbuildnx-e2e/tests/esbuildnx.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('esbuildnx e2e', () => {
removeSync(esbuildnxPluginModules);
});

it('should create esbuildnx', async (done) => {
it('should create esbuildnx', async () => {
const plugin = uniq('esbuildnx');

console.log(`Generating temp project`);
Expand Down Expand Up @@ -82,6 +82,6 @@ describe('esbuildnx e2e', () => {
// ['@nrwl', 'jest-resolve', 'rxjs', 'strip-json-comments'].sort()
// );

done();
// done();
}, 150000);
});
39 changes: 32 additions & 7 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"npmScope": "anatine",
"affected": { "defaultBase": "main" },
"affected": {
"defaultBase": "main"
},
"implicitDependencies": {
"workspace.json": "*",
"package.json": { "dependencies": "*", "devDependencies": "*" },
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.base.json": "*",
"tslint.json": "*",
".eslintrc.json": "*",
Expand All @@ -12,13 +17,33 @@
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/workspace/tasks-runners/default",
"options": { "cacheableOperations": ["build", "lint", "test", "e2e"] }
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
},
"projects": {
"esbuildnx": { "tags": [] },
"esbuildnx-e2e": { "tags": [], "implicitDependencies": ["esbuildnx"] },
"esbuild-decorators": { "tags": [] }
"esbuild-decorators": {
"tags": []
},
"esbuildnx": {
"tags": []
},
"esbuildnx-e2e": {
"tags": [],
"implicitDependencies": ["esbuildnx"]
}
},
"workspaceLayout": {
"appsDir": "e2e",
"libsDir": "packages"
},
"workspaceLayout": { "appsDir": "e2e", "libsDir": "packages" }
"targetDependencies": {
"build": [
{
"target": "build",
"projects": "dependencies"
}
]
}
}
Loading

0 comments on commit 2231b8c

Please sign in to comment.