Skip to content

Commit 0703d67

Browse files
committed
update packages
1 parent 9ac3610 commit 0703d67

File tree

4 files changed

+430
-204
lines changed

4 files changed

+430
-204
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ dist
1212
yarn.lock
1313
LICENSE
1414
.yarnrc
15+
docs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ generateTemplateFiles([
5656
},
5757
stringReplacers: ['__store__', '__model__'],
5858
dynamicReplacers: [
59-
{slot:'__version__', slotValue: config.version},
60-
{slot:'__description__', slotValue: config.description}
59+
{slot: '__version__', slotValue: config.version},
60+
{slot: '__description__', slotValue: config.description},
6161
],
6262
output: {
6363
path: './src/stores/__store__/__store__(lowerCase)/__store__(pascalCase)Action.ts',

package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"type-check": "tsc --noEmit",
2525
"type-check:watch": "npm run type-check -- --watch",
2626
"build:types": "tsc --emitDeclarationOnly",
27+
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
2728
"---------- DEVELOPMENT -------------------------------------": "",
2829
"prewatch": "npm run clean && npm run build:types",
2930
"watch": "rollup -cw",
@@ -59,33 +60,33 @@
5960
},
6061
"license": "MIT",
6162
"devDependencies": {
62-
"@babel/core": "7.8.4",
63+
"@babel/core": "7.9.0",
6364
"@babel/plugin-proposal-class-properties": "7.8.3",
64-
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
65-
"@babel/plugin-transform-runtime": "7.8.3",
66-
"@babel/preset-env": "7.8.4",
67-
"@babel/preset-typescript": "7.8.3",
68-
"@babel/runtime": "7.8.4",
69-
"@types/jest": "25.1.3",
65+
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
66+
"@babel/plugin-transform-runtime": "7.9.0",
67+
"@babel/preset-env": "7.9.0",
68+
"@babel/preset-typescript": "7.9.0",
69+
"@babel/runtime": "7.9.2",
70+
"@types/jest": "25.1.4",
7071
"@types/lodash.get": "4.4.6",
7172
"@types/path-exists": "4.0.2",
7273
"@types/replace-string": "3.0.0",
7374
"@types/through2": "2.0.34",
7475
"husky": "4.2.3",
7576
"jest": "25.1.0",
76-
"prettier": "1.19.1",
77+
"prettier": "2.0.1",
7778
"pretty-quick": "2.0.1",
7879
"rimraf": "3.0.2",
79-
"rollup": "1.31.1",
80-
"rollup-plugin-babel": "4.3.3",
80+
"rollup": "2.1.0",
81+
"rollup-plugin-babel": "4.4.0",
8182
"rollup-plugin-commonjs": "10.1.0",
8283
"rollup-plugin-node-resolve": "5.2.0",
8384
"ts-jest": "25.2.1",
84-
"tslib": "1.10.0",
85-
"tslint": "6.0.0",
85+
"tslib": "1.11.1",
86+
"tslint": "6.1.0",
8687
"tslint-config-prettier": "1.18.0",
87-
"typedoc": "0.16.10",
88-
"typescript": "3.7.5"
88+
"typedoc": "0.17.3",
89+
"typescript": "3.8.3"
8990
},
9091
"author": {
9192
"name": "Robert S. (codeBelt)",

0 commit comments

Comments
 (0)