Skip to content

Commit 879eb44

Browse files
committed
Fix in previous publish
1 parent 365b3dd commit 879eb44

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
examples
22
flow-typed
33
node_modules
4+
src
45
.circleci
56
.github
67
coverage
@@ -9,4 +10,4 @@ coverage
910
.flowconfig
1011
.eslintignore
1112
CODE_OF_CONDUCT.md
12-
README.md
13+
README.md

index.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "eslint --cache ./src",
1010
"tslint": "tslint -p .",
1111
"type-check": "tsc --noEmit",
12-
"prepublishOnly": "tsc -p . --outDir dist/"
12+
"prepublishOnly": "tsc -p ./ --outDir dist/"
1313
},
1414
"repository": {
1515
"type": "git",

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import NestedListView from './NestedListView'
2+
import NestedRow from './NestedRow'
3+
4+
export {NestedRow}
5+
6+
export default NestedListView

0 commit comments

Comments
 (0)