Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit e15b1ff

Browse files
chore(defaults): update
1 parent b54fbc7 commit e15b1ff

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ insert_final_newline = true
99
trim_trailing_whitespace = true
1010

1111
[*.md]
12-
insert_final_newline = true
13-
trim_trailing_whitespace = false
12+
trim_trailing_whitespace = false

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variables:
88
jobs:
99
- job: Lint
1010
pool:
11-
vmImage: ubuntu-16.04
11+
vmImage: ubuntu-latest
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
@@ -39,7 +39,7 @@ jobs:
3939

4040
- job: Linux
4141
pool:
42-
vmImage: ubuntu-16.04
42+
vmImage: ubuntu-latest
4343
strategy:
4444
maxParallel: 4
4545
matrix:
@@ -92,7 +92,7 @@ jobs:
9292

9393
- job: macOS
9494
pool:
95-
vmImage: macOS-10.14
95+
vmImage: macOS-latest
9696
strategy:
9797
maxParallel: 4
9898
matrix:
@@ -145,7 +145,7 @@ jobs:
145145

146146
- job: Windows
147147
pool:
148-
vmImage: windows-2019
148+
vmImage: windows-latest
149149
strategy:
150150
maxParallel: 4
151151
matrix:

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@commitlint/cli": "^8.2.0",
4848
"@commitlint/config-angular": "^8.2.0",
4949
"@commitlint/config-conventional": "^8.2.0",
50-
"@webpack-contrib/defaults": "^5.1.1",
50+
"@webpack-contrib/defaults": "^6.0.1",
5151
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
5252
"babel-jest": "^24.9.0",
5353
"commitlint-azure-pipelines-cli": "^1.0.2",

test/cjs.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import loader from '../src';
2-
import CJSLoader from '../src/cjs';
1+
import src from '../src';
2+
import cjs from '../src/cjs';
33

44
describe('CJS', () => {
55
it('should exported loader', () => {
6-
expect(CJSLoader).toEqual(loader);
6+
expect(cjs).toEqual(src);
77
});
88
});

0 commit comments

Comments
 (0)