-
Notifications
You must be signed in to change notification settings - Fork 20
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 #231 from lyra/fix/example-issues
feat(examples): Update framework examples and add e2e tests for them
- Loading branch information
Showing
85 changed files
with
65,362 additions
and
64,917 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.pyc | ||
node_modules | ||
.history | ||
examples_build | ||
.angular |
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,33 @@ | ||
#!/bin/bash | ||
|
||
mkdir -p examples_build/react | ||
mkdir examples_build/next | ||
mkdir examples_build/server | ||
mkdir examples_build/svelte | ||
|
||
cd examples | ||
|
||
npm ci --prefix server && | ||
npm ci --prefix angular/minimal-example && | ||
npm ci --prefix emberjs && | ||
npm ci --legacy-peer-deps --prefix ionic/minimal-example && | ||
npm ci --prefix react/minimal-example && | ||
npm ci --prefix react/next-minimal && | ||
npm ci --prefix vuejs/minimal-example && | ||
npm ci --prefix svelte/minimal-example | ||
|
||
wait | ||
|
||
npm run build:example --prefix angular/minimal-example && | ||
npm run build:example --prefix emberjs && | ||
npm run build:example --prefix ionic/minimal-example && | ||
npm run build:example --prefix react/minimal-example && | ||
npm run build:example --prefix react/next-minimal && | ||
npm run build:example --prefix vuejs/minimal-example && | ||
npm run build:example --prefix svelte/minimal-example | ||
|
||
wait | ||
|
||
cp -R server ../examples_build/ | ||
|
||
gulp replaceKeys |
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
Oops, something went wrong.