File tree 6 files changed +22
-20
lines changed
6 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 1
- name : autofix.ci # needed to securely identify the workflow
1
+ name : autofix.ci # needed to securely identify the workflow
2
2
3
3
on :
4
4
pull_request :
5
5
push :
6
- branches : [ "main" ]
6
+ branches : ["main"]
7
7
8
8
permissions :
9
9
contents : read
23
23
run : pnpm run lint:fix
24
24
- uses : autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
25
25
with :
26
- commit-message : ' chore: apply automated lint fixes'
26
+ commit-message : " chore: apply automated lint fixes"
Original file line number Diff line number Diff line change 1
1
test /drivers /tmp
2
+ dist
3
+ node_modules
4
+ .output
5
+ .nuxt
6
+ CHANGELOG.md
7
+ pnpm-lock.yaml
8
+ docs /2.drivers /0.index.md
Original file line number Diff line number Diff line change @@ -356,11 +356,11 @@ type StorageDefinition = {
356
356
items: {
357
357
foo: string ;
358
358
baz: number ;
359
- }
360
- }
359
+ };
360
+ };
361
361
362
362
const storage = createStorage <StorageDefinition >();
363
- await storage .has (" foo" );// Ts will prompt you that there are two optional keys: "foo" or "baz"
363
+ await storage .has (" foo" ); // Ts will prompt you that there are two optional keys: "foo" or "baz"
364
364
await storage .getItem (" baz" ); // => string
365
365
await storage .setItem (" foo" , 12 ); // TS error: <number> is not compatible with <string>
366
366
await storage .setItem (" foo" , " val" ); // Check ok
Original file line number Diff line number Diff line change 34
34
"bench" : " jiti test/server.bench.ts" ,
35
35
"build" : " unbuild" ,
36
36
"dev" : " vitest" ,
37
- "lint" : " eslint . && prettier -c src test " ,
38
- "lint:fix" : " eslint . --fix && prettier -w src test " ,
37
+ "lint" : " eslint . && prettier -c . " ,
38
+ "lint:fix" : " eslint . --fix && prettier -w . " ,
39
39
"prepack" : " pnpm build" ,
40
40
"release" : " pnpm test && changelogen --release && git push --follow-tags && pnpm publish" ,
41
41
"test" : " pnpm lint && pnpm test:types && vitest run --coverage" ,
108
108
"@azure/keyvault-secrets" : " ^4.9.0" ,
109
109
"@azure/storage-blob" : " ^12.26.0" ,
110
110
"@capacitor/preferences" : " ^6.0.3" ,
111
+ "@deno/kv" : " >=0.8.4" ,
111
112
"@netlify/blobs" : " ^6.5.0 || ^7.0.0 || ^8.1.0" ,
112
113
"@planetscale/database" : " ^1.19.0" ,
113
114
"@upstash/redis" : " ^1.34.3" ,
114
115
"@vercel/blob" : " >=0.27.0" ,
115
116
"@vercel/kv" : " ^1.0.1" ,
116
117
"db0" : " >=0.2.1" ,
117
118
"idb-keyval" : " ^6.2.1" ,
118
- "ioredis" : " ^5.4.1" ,
119
- "@deno/kv" : " >=0.8.4"
119
+ "ioredis" : " ^5.4.1"
120
120
},
121
121
"peerDependenciesMeta" : {
122
122
"@azure/app-configuration" : {
140
140
"@capacitor/preferences" : {
141
141
"optional" : true
142
142
},
143
+ "@deno/kv" : {
144
+ "optional" : true
145
+ },
143
146
"@netlify/blobs" : {
144
147
"optional" : true
145
148
},
163
166
},
164
167
"ioredis" : {
165
168
"optional" : true
166
- },
167
- "@deno/kv" : {
168
- "optional" : true
169
169
}
170
170
},
171
171
"packageManager" : " pnpm@9.15.0"
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : [
3
- " github>unjs/renovate-config"
4
- ]
2
+ "extends" : [" github>unjs/renovate-config" ]
5
3
}
Original file line number Diff line number Diff line change 16
16
"noEmit" : true ,
17
17
"allowImportingTsExtensions" : true ,
18
18
"skipLibCheck" : true ,
19
- "types" : [
20
- " node" ,
21
- " deno"
22
- ],
19
+ "types" : [" node" , " deno" ]
23
20
}
24
21
}
You can’t perform that action at this time.
0 commit comments