Skip to content

Commit 7fefbd5

Browse files
authored
chore: add missing examples to fabric example folder (#621)
* feat: add missing examples to fabric example * fix: fix typescript issue
1 parent ced9817 commit 7fefbd5

Some content is hidden

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

49 files changed

+3052
-200
lines changed

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,25 @@ jobs:
2626
keys:
2727
- dependencies-example-{{ checksum "example/package.json" }}
2828
- dependencies-example-
29+
- restore_cache:
30+
keys:
31+
- dependencies-fabricexample-{{ checksum "fabricexample/package.json" }}
32+
- dependencies-fabricexample-
2933
- run:
3034
name: Install dependencies
3135
command: |
3236
yarn install --cwd example --frozen-lockfile
37+
yarn install --cwd fabricexample --frozen-lockfile
3338
yarn install --frozen-lockfile
3439
- save_cache:
3540
key: dependencies-{{ checksum "package.json" }}
3641
paths: node_modules
3742
- save_cache:
3843
key: dependencies-example-{{ checksum "example/package.json" }}
3944
paths: example/node_modules
45+
- save_cache:
46+
key: dependencies-fabricexample-{{ checksum "fabricexample/package.json" }}
47+
paths: fabricexample/node_modules
4048
- persist_to_workspace:
4149
root: .
4250
paths: .
27.6 KB
Loading
20.3 KB
Loading
27.4 KB
Loading
33.1 KB
Loading
11.4 KB
Loading
21.6 KB
Loading
10 KB
Loading
20.9 KB
Loading
2.4 KB
Loading

0 commit comments

Comments
 (0)