Skip to content

Commit a89566e

Browse files
authored
fix(deps): Upgrade to source-utils 3.x
1 parent edd758b commit a89566e

File tree

7 files changed

+2146
-2837
lines changed

7 files changed

+2146
-2837
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- alpha
7+
- 2.x
8+
jobs:
9+
release:
10+
name: Release
11+
runs-on: ubuntu-18.04
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: 12
21+
- name: Install dependencies
22+
run: yarn install --frozen-lockfile
23+
- name: Release
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
27+
run: yarn release

.github/workflows/test.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
name: Test
8+
runs-on: ubuntu-18.04
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v1
16+
with:
17+
node-version: 12
18+
- name: Install dependencies
19+
run: yarn install --frozen-lockfile
20+
- name: Lint
21+
run: yarn lint
22+
- name: Test
23+
run: yarn test

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"@types/express": "^4.17.6",
3636
"@types/jest": "^25.2.1",
3737
"@types/memory-fs": "^0.3.2",
38-
"@types/schema-utils": "^2.4.0",
3938
"@types/webpack": "^4.41.12",
4039
"@typescript-eslint/eslint-plugin": "^2.30.0",
4140
"@typescript-eslint/parser": "^2.30.0",
@@ -58,8 +57,10 @@
5857
},
5958
"dependencies": {
6059
"chalk": "^4.0.0",
60+
"debug": "^4.3.1",
6161
"eval": "^0.1.4",
62-
"exception-formatter": "^2.1.2"
62+
"exception-formatter": "^2.1.2",
63+
"schema-utils": "^3.0.0"
6364
},
6465
"config": {
6566
"commitizen": {

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import validateOptions from "schema-utils";
1+
import { validate } from "schema-utils";
22

33
import schema from "./schemas/HtmlRenderWebpackPlugin.json";
44
import RenderError from "./RenderError";
@@ -52,7 +52,7 @@ interface CompilationStatus {
5252

5353
export = class HtmlRenderPlugin<Route extends BaseRoute = BaseRoute> {
5454
constructor(options: Options<Route> = {}) {
55-
validateOptions(schema, options || {}, "HTML Render Webpack Plugin");
55+
validate(schema, options || {}, "HTML Render Webpack Plugin");
5656

5757
const pluginName = "HtmlRenderPlugin";
5858

tests/test-cases/legacy-api/__snapshots__/legacy-api.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exports[`Use legacy api should render a HTML file 1`] = `
99
\\"route\\": \\"/\\",
1010
\\"extra\\": \\"extra-value\\",
1111
\\"assets\\": {
12-
\\"main\\": \\"client-main-2951ae76c7e3fa46fad4.js\\"
12+
\\"main\\": \\"client-main-6c850010dbab14126df7.js\\"
1313
}
1414
}
1515
]</code>

tests/test-cases/webpack-stats/__snapshots__/webpack-stats.test.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exports[`Render WebpackStats should render a with asset names 1`] = `
44
Object {
55
"index.html": "{
66
\\"assets\\": {
7-
\\"main\\": \\"client-main-2951ae76c7e3fa46fad4.js\\"
7+
\\"main\\": \\"client-main-6c850010dbab14126df7.js\\"
88
}
99
}",
1010
}

0 commit comments

Comments
 (0)