Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Release 0.0.21
Browse files Browse the repository at this point in the history
Prev 0.0.20 did not compile correctly
  • Loading branch information
hyochan committed Oct 2, 2020
1 parent fd84263 commit 7645f07
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelogs

- **[0.0.20]**
- **[0.0.21]**

- Upgrade expo sdk to 39 which has reac-native version of 0.63+ [#355](https://github.com/dooboolab/dooboo-ui/pull/355)

Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dooboo-ui",
"version": "0.0.20",
"version": "0.0.21",
"main": "index.js",
"types": "index.d.ts",
"author": "dooboolab",
Expand Down
9 changes: 7 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@
"emitDecoratorMetadata": true,
"esModuleInterop": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "stories/**/*.ts", "stories/**/*.tsx"],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"stories/**/*.ts",
"stories/**/*.tsx"
],
"exclude": ["node_modules", "**/*.test.tsx", "**/*.spec.ts"],
"files": ["environment.d.ts"],
"types": ["typePatches"],
"types": ["typePatches"]
}
10 changes: 8 additions & 2 deletions tsconfigBuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
"allowSyntheticDefaultImports": true,
"declaration": true
},
"exclude": ["node_modules", "lib", "**/**/*/__tests__", "dist", "**/*.example.*"],
"include": ["./main"],
"exclude": [
"node_modules",
"lib",
"**/**/*/__tests__",
"dist",
"**/*.example.*"
],
"include": ["main"],
"files": ["environment.d.ts"]
}

0 comments on commit 7645f07

Please sign in to comment.