Skip to content

Commit e0491b8

Browse files
authored
chore: update workspace dev dependencies versions (#162)
1 parent bea586f commit e0491b8

File tree

6 files changed

+1063
-1879
lines changed

6 files changed

+1063
-1879
lines changed

package.json

+22-21
Original file line numberDiff line numberDiff line change
@@ -30,40 +30,41 @@
3030
"watch": "tsc-watch"
3131
},
3232
"devDependencies": {
33-
"@changesets/cli": "^2.19.0",
34-
"@custom-elements-manifest/analyzer": "^0.5.7",
33+
"@changesets/cli": "^2.25.2",
34+
"@custom-elements-manifest/analyzer": "^0.6.6",
3535
"@rocket/cli": "^0.10.1",
3636
"@rocket/core": "^0.1.2",
3737
"@rocket/launch": "^0.6.0",
3838
"@rocket/search": "^0.5.1",
39-
"@size-limit/preset-small-lib": "^6.0.4",
40-
"@typescript-eslint/eslint-plugin": "^5.8.1",
41-
"@typescript-eslint/parser": "^5.8.1",
42-
"@web/dev-server": "^0.1.29",
43-
"concurrently": "^6.5.1",
39+
"@size-limit/preset-small-lib": "^8.1.0",
40+
"@typescript-eslint/eslint-plugin": "^5.44.0",
41+
"@typescript-eslint/parser": "^5.44.0",
42+
"@web/dev-server": "^0.1.35",
43+
"concurrently": "^7.6.0",
4444
"deepmerge": "^4.2.2",
45-
"eslint": "^8.6.0",
45+
"eslint": "^8.28.0",
4646
"eslint-config-airbnb-base": "^15.0.0",
47-
"eslint-config-prettier": "^8.3.0",
48-
"eslint-plugin-import": "^2.25.3",
47+
"eslint-config-prettier": "^8.5.0",
48+
"eslint-plugin-import": "^2.26.0",
4949
"eslint-plugin-lit": "^1.6.1",
50-
"eslint-plugin-prettier": "^4.0.0",
50+
"eslint-plugin-prettier": "^4.2.1",
5151
"eslint-plugin-wc": "^1.3.2",
52-
"lint-staged": "^12.1.4",
52+
"lint-staged": "^13.0.3",
5353
"lit-analyzer": "^1.2.1",
5454
"npm-run-all": "^4.1.5",
5555
"picocolors": "^1.0.0",
56-
"postcss-lit": "^0.4.1",
57-
"prettier": "^2.5.1",
56+
"postcss-lit": "^0.5.0",
57+
"prettier": "^2.7.1",
5858
"prettier-plugin-package": "^1.3.0",
5959
"rimraf": "^3.0.2",
60-
"simple-git-hooks": "^2.7.0",
61-
"size-limit": "^6.0.4",
62-
"stylelint": "^14.2.0",
63-
"stylelint-config-prettier": "^9.0.3",
64-
"stylelint-config-standard": "^24.0.0",
65-
"tsc-watch": "^4.6.0",
66-
"typescript": "^4.5.4"
60+
"rollup": "^2.66.1",
61+
"simple-git-hooks": "^2.8.1",
62+
"size-limit": "^8.1.0",
63+
"stylelint": "^14.15.0",
64+
"stylelint-config-prettier": "^9.0.4",
65+
"stylelint-config-standard": "^29.0.0",
66+
"tsc-watch": "^5.0.3",
67+
"typescript": "^4.9.3"
6768
},
6869
"resolutions": {
6970
"@mdjs/core": "^0.9.0",

packages/api-demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"size-limit": [
6060
{
6161
"path": "lib/api-demo.js",
62-
"limit": "19 KB"
62+
"limit": "25 KB"
6363
}
6464
]
6565
}

packages/api-docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"size-limit": [
6363
{
6464
"path": "lib/api-docs.js",
65-
"limit": "30 KB"
65+
"limit": "35 KB"
6666
}
6767
]
6868
}

packages/api-viewer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"size-limit": [
6060
{
6161
"path": "lib/api-viewer.js",
62-
"limit": "38.7 KB"
62+
"limit": "45 KB"
6363
}
6464
]
6565
}

scripts/runWorkspacesScripts.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ export function runWorkspacesScripts({
4141
command: `cd ${pkgPath} && yarn ${script}`
4242
}));
4343

44-
concurrently(commands, { maxProcesses: concurrency })
44+
const { result } = concurrently(commands, { maxProcesses: concurrency });
45+
result
4546
.then(() => {
4647
console.log(
4748
pc.green(

0 commit comments

Comments
 (0)