File tree Expand file tree Collapse file tree 4 files changed +263
-712
lines changed Expand file tree Collapse file tree 4 files changed +263
-712
lines changed Original file line number Diff line number Diff line change 24
24
" packages/*"
25
25
],
26
26
"devDependencies" : {
27
- "@nice-move/cli" : " ^0.5.33 " ,
28
- "@nice-move/commitlint-config" : " ^0.3 .0" ,
29
- "@nice-move/eslint-config-base" : " ^0.5.67 " ,
27
+ "@nice-move/cli" : " ^0.6.0 " ,
28
+ "@nice-move/commitlint-config" : " ^0.4 .0" ,
29
+ "@nice-move/eslint-config-base" : " ^0.5.69 " ,
30
30
"@nice-move/prettier-config" : " ^0.5.1" ,
31
31
"ava" : " ^3.15.0" ,
32
- "commitlint" : " ^14.1 .0" ,
32
+ "commitlint" : " ^15.0 .0" ,
33
33
"eslint" : " ^7.32.0" ,
34
34
"eslint-plugin-ava" : " ^13.1.0" ,
35
- "garou" : " ^0.2.5 " ,
35
+ "garou" : " ^0.2.7 " ,
36
36
"node-storage-shim" : " ^2.0.1" ,
37
37
"prettier" : " ^2.4.1"
38
38
},
39
39
"engines" : {
40
- "node" : " ^12.22.0 || ^14.17.0 || ^ 16.13.0"
40
+ "node" : " ^12.22.0 || ^14.17.0 || >= 16.13.0"
41
41
},
42
42
"commitlint" : {
43
43
"extends" : " @nice-move/commitlint-config"
Original file line number Diff line number Diff line change 3
3
function safeParse ( string ) {
4
4
try {
5
5
return JSON . parse ( string ) ;
6
- } catch {
7
-
8
- }
6
+ // eslint-disable-next-line unicorn/prefer-optional-catch-binding
7
+ } catch ( error ) { }
9
8
}
10
9
11
10
export function PetShop ( { storage, namespace, json = false } ) {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pet-shop" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.1.2 " ,
4
4
"description" : " A simple wrapper of Web Storage API" ,
5
5
"license" : " MIT" ,
6
6
"author" : {
You can’t perform that action at this time.
0 commit comments