Skip to content

Commit f3b4d56

Browse files
committed
chore: Add ignore for example
1 parent 1272140 commit f3b4d56

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

example/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
src/*.js
3+
lib
4+
yarn.lock

example/bsconfig.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,36 @@
11
{
22
"name": "storybook-test",
33
"namespace": false,
4-
"reason": { "react-jsx": 3 },
4+
"reason": {
5+
"react-jsx": 3
6+
},
57
"refmt": 3,
6-
"bs-dependencies": ["reason-react"],
8+
"bs-dependencies": [
9+
"reason-react"
10+
],
711
"ppx-flags": [],
812
"sources": [
9-
{ "dir": "src", "subdirs": true },
10-
{ "dir": "bindings", "subdirs": true },
11-
{ "dir": "stories", "subdirs": true }
13+
{
14+
"dir": "src",
15+
"subdirs": true
16+
},
17+
{
18+
"dir": "bindings",
19+
"subdirs": true
20+
},
21+
{
22+
"dir": "stories",
23+
"subdirs": true
24+
}
1225
],
1326
"package-specs": {
1427
"module": "es6",
1528
"in-source": true
1629
},
1730
"suffix": ".bs.js",
18-
"bsc-flags": ["-bs-no-version-header", "-bs-super-errors", "-bs-g"]
31+
"bsc-flags": [
32+
"-bs-no-version-header",
33+
"-bs-super-errors",
34+
"-bs-g"
35+
]
1936
}

0 commit comments

Comments
 (0)