Skip to content

Commit ce329cc

Browse files
Jehun Seem(심제훈)kheruc
Jehun Seem(심제훈)
authored andcommitted
Fix with-mobx-state-tree-typescript modules export (vercel#6704)
* Update libraries * Fix for export modules for type
1 parent 12cbb93 commit ce329cc

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

examples/with-mobx-state-tree-typescript/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
},
1010
"dependencies": {
1111
"@zeit/next-typescript": "1.1.0",
12-
"mobx": "5.0.5",
13-
"mobx-react": "5.2.5",
14-
"mobx-state-tree": "3.2.3",
12+
"mobx": "^5.9.0",
13+
"mobx-react": "^5.4.3",
14+
"mobx-state-tree": "^3.11.0",
1515
"next": "latest",
1616
"react": "^16.7.0",
1717
"react-dom": "^16.7.0",
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@types/next": "^6.1.4",
2222
"@types/react": "^16.4.12",
23-
"@babel/plugin-proposal-decorators": "^7.1.2",
23+
"@babel/plugin-proposal-decorators": "^7.3.0",
2424
"tslint": "^5.9.1",
2525
"tslint-config-standard": "^7.0.0",
2626
"tslint-loader": "^3.5.3",

examples/with-mobx-state-tree-typescript/stores/store.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ const Store = types
2929
return { start, stop, update };
3030
});
3131

32-
type IStore = Instance<typeof Store>;
33-
type IStoreSnapshotIn = SnapshotIn<typeof Store>;
34-
type IStoreSnapshotOut = SnapshotOut<typeof Store>;
32+
export type IStore = Instance<typeof Store>;
33+
export type IStoreSnapshotIn = SnapshotIn<typeof Store>;
34+
export type IStoreSnapshotOut = SnapshotOut<typeof Store>;
3535

36-
const initializeStore = (isServer, snapshot = null) => {
36+
export const initializeStore = (isServer, snapshot = null) => {
3737
if (isServer) {
3838
store = Store.create({ foo:6, lastUpdate: Date.now() });
3939
}
@@ -45,5 +45,3 @@ const initializeStore = (isServer, snapshot = null) => {
4545
}
4646
return store;
4747
};
48-
49-
export { initializeStore, IStore, IStoreSnapshotIn, IStoreSnapshotOut };

0 commit comments

Comments
 (0)