Skip to content

Commit dfd331a

Browse files
committed
Update dependencies
1 parent b6351d5 commit dfd331a

File tree

3 files changed

+156
-143
lines changed

3 files changed

+156
-143
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@
3939
"repository": "postcss/postcss",
4040
"dependencies": {
4141
"colorette": "^1.2.1",
42-
"nanoid": "^3.1.16",
42+
"nanoid": "^3.1.18",
4343
"source-map": "^0.6.1",
4444
"vfile-location": "^3.2.0"
4545
},
4646
"devDependencies": {
4747
"@logux/eslint-config": "^42.2.2",
48-
"@size-limit/preset-small-lib": "^4.8.0",
48+
"@size-limit/preset-small-lib": "^4.9.0",
4949
"@types/fs-extra": "^9.0.4",
5050
"@types/jest": "^26.0.15",
51-
"@types/node": "^14.14.8",
51+
"@types/node": "^14.14.9",
5252
"@typescript-eslint/eslint-plugin": "^4.8.1",
5353
"@typescript-eslint/parser": "^4.8.1",
5454
"check-dts": "^0.4.0",
@@ -57,7 +57,7 @@
5757
"concat-with-sourcemaps": "^1.1.0",
5858
"documentation": "^13.1.0",
5959
"documentation-theme-light": "^1.1.1",
60-
"eslint": "^7.13.0",
60+
"eslint": "^7.14.0",
6161
"eslint-config-standard": "^16.0.2",
6262
"eslint-plugin-import": "^2.22.1",
6363
"eslint-plugin-jest": "^24.1.3",
@@ -73,10 +73,10 @@
7373
"lint-staged": "^10.5.1",
7474
"nanodelay": "^1.0.6",
7575
"postcss-parser-tests": "^8.3.3",
76-
"size-limit": "^4.8.0",
76+
"size-limit": "^4.9.0",
7777
"strip-ansi": "^6.0.0",
7878
"ts-jest": "^26.4.4",
79-
"typescript": "^4.0.5",
79+
"typescript": "^4.1.2",
8080
"yaspeller": "^7.0.0"
8181
},
8282
"lint-staged": {

test/processor.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ it('supports async errors', () => {
275275
reject(error)
276276
})
277277
}
278-
return new Promise((resolve, reject) => {
278+
return new Promise<void>((resolve, reject) => {
279279
let result = new Processor([async]).process('', { from: undefined })
280280
result
281281
.then(() => {
@@ -296,7 +296,7 @@ it('supports sync errors in async mode', () => {
296296
let async = () => {
297297
throw error
298298
}
299-
return new Promise((resolve, reject) => {
299+
return new Promise<void>((resolve, reject) => {
300300
new Processor([async])
301301
.process('', { from: undefined })
302302
.then(() => {

0 commit comments

Comments
 (0)