Skip to content

Commit 5e310c0

Browse files
koddssonWestbrook
authored andcommitted
Run formatter
1 parent 58b560a commit 5e310c0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"devDependencies": {
4949
"@changesets/cli": "^2.16.0",
5050
"@rollup/plugin-node-resolve": "^15.0.1",
51+
"@rollup/plugin-terser": "^0.4.1",
5152
"@rollup/plugin-typescript": "^11.0.0",
5253
"@types/chai": "^4.2.22",
5354
"@types/mocha": "^10.0.1",
@@ -71,7 +72,6 @@
7172
"prettier-plugin-package": "^1.3.0",
7273
"rimraf": "^4.4.1",
7374
"rollup": "^3.15.0",
74-
"@rollup/plugin-terser": "^0.4.1",
7575
"ts-node": "^10.4.0",
7676
"typescript": "~5.0.4"
7777
},
@@ -111,11 +111,6 @@
111111
"@typescript-eslint/ban-ts-comment": "off"
112112
}
113113
},
114-
"mocha": {
115-
"loader": "ts-node/esm",
116-
"exit": true,
117-
"retries": 3
118-
},
119114
"lint-staged": {
120115
"*.js": [
121116
"eslint --fix",
@@ -125,6 +120,11 @@
125120
"prettier --write --ignore-path .eslintignore"
126121
]
127122
},
123+
"mocha": {
124+
"loader": "ts-node/esm",
125+
"exit": true,
126+
"retries": 3
127+
},
128128
"prettier": {
129129
"singleQuote": true,
130130
"arrowParens": "avoid",

packages/dev-server-storybook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"@mdx-js/mdx": "^1.6.22",
6060
"@rollup/plugin-babel": "^6.0.3",
6161
"@rollup/plugin-node-resolve": "^15.0.1",
62+
"@rollup/plugin-terser": "^0.4.1",
6263
"@storybook/csf-tools": "^6.4.9",
6364
"@web/dev-server-core": "^0.5.0",
6465
"@web/rollup-plugin-html": "^2.0.0",
@@ -70,7 +71,6 @@
7071
"globby": "^11.0.1",
7172
"path-is-inside": "^1.0.2",
7273
"rollup": "^3.15.0",
73-
"@rollup/plugin-terser": "^0.4.1",
7474
"storybook-addon-markdown-docs": "^1.0.4"
7575
},
7676
"devDependencies": {

packages/rollup-plugin-workbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"dependencies": {
3434
"@rollup/plugin-node-resolve": "^15.0.1",
3535
"@rollup/plugin-replace": "^5.0.2",
36-
"pretty-bytes": "^5.5.0",
3736
"@rollup/plugin-terser": "^0.4.1",
37+
"pretty-bytes": "^5.5.0",
3838
"workbox-build": "^6.2.4"
3939
},
4040
"contributors": [

packages/test-runner-coverage-v8/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export async function v8ToIstanbul(
8888
} else {
8989
// When we reuse a cached converter, we need to reset it before using its `applyCoverage` function.
9090
// If we don't, the coverage results will be poisoned with the results of the previous uses.
91-
//
91+
//
9292
// This "workaround" is resetting some internal variables of the `V8ToIstanbul` class: `branches` & `functions`.
9393
// This can break when newer versions of v8-to-istanbul are released. (variable renaming, more variables are used, ...)
9494
//
@@ -98,7 +98,7 @@ export async function v8ToIstanbul(
9898
converter.branches = {};
9999
// @ts-ignore
100100
converter.functions = {};
101-
}
101+
}
102102

103103
converter.applyCoverage(entry.functions);
104104
Object.assign(istanbulCoverage, converter.toIstanbul());

0 commit comments

Comments
 (0)