Skip to content

Commit 6c167f3

Browse files
Tiffany Le-Nguyenkodiakhq[bot]
andauthored
chore: add nx demo (#854)
* chore: add nx * chore: cleanup * chore: prettier ignore demo thanks * chore: config netlify toml * chore: fix path to lib * chore: fix package.json preinstall path * chore: fix test * chore: fix test * chore: ignore all dists * chore: ignore all dists again Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent f3340b8 commit 6c167f3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+35289
-6
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.next
22
node_modules
33
test
4-
lib
4+
lib
5+
demos

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bower_components
4040
build/Release
4141

4242
# Dependency directories
43-
node_modules/
43+
**/node_modules/
4444
jspm_packages/
4545

4646
# TypeScript v1 declaration files
@@ -84,7 +84,8 @@ typings/
8484

8585
# Nuxt.js build / generate output
8686
.nuxt
87-
dist
87+
**/dist
88+
**/.dist
8889

8990
# Gatsby files
9091
.cache/

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ node_modules
1717

1818
# Test
1919
lib
20-
tsconfig.json
20+
tsconfig.json
21+
demos

cypress/config/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"baseUrl": "http://localhost:3000",
3-
"integrationFolder": "../../cypress/integration",
3+
"integrationFolder": "../../cypress/integration/default",
44
"pluginsFile": "../../cypress/plugins",
55
"screenshotsFolder": "../../cypress/screenshots",
66
"supportFile": "../../cypress/support/index.js",

cypress/config/nx-demo.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"baseUrl": "http://localhost:4200",
3+
"integrationFolder": "../../cypress/integration/nx",
4+
"pluginsFile": "../../cypress/plugins",
5+
"screenshotsFolder": "../../cypress/screenshots",
6+
"supportFile": "../../cypress/support/index.js",
7+
"videoFolder": "../../cypress/videos"
8+
}

0 commit comments

Comments
 (0)