Skip to content

Commit

Permalink
v1.1.4 - fix template version and add d.ts file to get npm ts icon
Browse files Browse the repository at this point in the history
  • Loading branch information
kuasha420 committed Jul 1, 2021
1 parent aea0d6f commit 2b1be0d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module "react-native-template-ts-plus";
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "react-native-template-ts-plus",
"version": "1.1.3",
"version": "1.1.4",
"description": "A React Native TypeScript Template with Superpowers",
"types": "index.d.ts",
"scripts": {
"test": "exit 0"
},
Expand Down
4 changes: 2 additions & 2 deletions template/src/stores/root-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import getLatestVersion from '~/services/version';

const RootStore = types
.model('RootStore', {
version: '1.1.1',
latestVersion: '1.1.1',
version: '1.1.4',
latestVersion: '1.1.4',
userColorScheme: types.maybeNull(types.union(types.literal('light'), types.literal('dark'))),
hydrated: false,
})
Expand Down

0 comments on commit 2b1be0d

Please sign in to comment.