-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from benpsnyder/task/update-nx-13.4.2
- Loading branch information
Showing
250 changed files
with
12,437 additions
and
11,338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
/out-tsc | ||
|
||
# dependencies | ||
/node_modules | ||
node_modules | ||
|
||
# IDEs and editors | ||
/.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"projectType": "application", | ||
"root": "apps/docusaurus-e2e", | ||
"sourceRoot": "apps/docusaurus-e2e/src", | ||
"targets": { | ||
"e2e": { | ||
"executor": "@nrwl/nx-plugin:e2e", | ||
"options": { | ||
"target": "docusaurus:build", | ||
"jestConfig": "apps/docusaurus-e2e/jest.config.js" | ||
} | ||
} | ||
}, | ||
"tags": [], | ||
"implicitDependencies": ["docusaurus"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"projectType": "application", | ||
"root": "apps/nuxt-e2e", | ||
"sourceRoot": "apps/nuxt-e2e/src", | ||
"targets": { | ||
"e2e": { | ||
"executor": "@nrwl/nx-plugin:e2e", | ||
"options": { | ||
"target": "nuxt:build", | ||
"jestConfig": "apps/nuxt-e2e/jest.config.js" | ||
} | ||
} | ||
}, | ||
"tags": [], | ||
"implicitDependencies": ["nuxt"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"projectType": "application", | ||
"root": "apps/vite-e2e", | ||
"sourceRoot": "apps/vite-e2e/src", | ||
"targets": { | ||
"e2e": { | ||
"executor": "@nrwl/nx-plugin:e2e", | ||
"options": { | ||
"target": "vite:build", | ||
"jestConfig": "apps/vite-e2e/jest.config.js" | ||
} | ||
} | ||
}, | ||
"tags": [], | ||
"implicitDependencies": ["vite"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"projectType": "application", | ||
"root": "apps/vue-e2e", | ||
"sourceRoot": "apps/vue-e2e/src", | ||
"targets": { | ||
"e2e": { | ||
"executor": "@nrwl/nx-plugin:e2e", | ||
"options": { | ||
"target": "vue:build", | ||
"jestConfig": "apps/vue-e2e/jest.config.js" | ||
} | ||
} | ||
}, | ||
"tags": [], | ||
"implicitDependencies": ["vue"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"executors": { | ||
"browser": { | ||
"implementation": "./src/executors/browser/executor", | ||
"schema": "./src/executors/browser/schema.json", | ||
"description": "browser executor" | ||
}, | ||
"dev-server": { | ||
"implementation": "./src/executors/dev-server/executor", | ||
"schema": "./src/executors/dev-server/schema.json", | ||
"description": "serve executor" | ||
} | ||
}, | ||
"builders": { | ||
"build": { | ||
"implementation": "./src/executors/browser/compat", | ||
"schema": "./src/executors/browser/schema.json", | ||
"description": "browser builder" | ||
}, | ||
"dev-server": { | ||
"implementation": "./src/executors/dev-server/compat", | ||
"schema": "./src/executors/dev-server/schema.json", | ||
"description": "dev-server builder" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"name": "docusaurus", | ||
"version": "0.0.1", | ||
"generators": { | ||
"application": { | ||
"factory": "./src/generators/application/generator#applicationGenerator", | ||
"schema": "./src/generators/application/schema.json", | ||
"description": "application generator", | ||
"aliases": ["app"] | ||
} | ||
}, | ||
"schematics": { | ||
"application": { | ||
"factory": "./src/generators/application/generator#applicationSchematic", | ||
"schema": "./src/generators/application/schema.json", | ||
"description": "application schematic", | ||
"aliases": ["app"] | ||
} | ||
} | ||
} |
Oops, something went wrong.