Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 15574e4

Browse files
committedDec 13, 2019
chore(defaults): update
1 parent 65450d9 commit 15574e4

8 files changed

+200
-114
lines changed
 

‎.editorconfig

-1
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
1312
trim_trailing_whitespace = false

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [3.3.2](https://github.com/webpack-contrib/css-loader/compare/v3.3.1...v3.3.2) (2019-12-12)
6+
7+
8+
### Bug Fixes
9+
10+
* logic for order and media queries for imports ([1fb5134](https://github.com/webpack-contrib/css-loader/commit/1fb51340a7719b6f5b517cb71ea85ec5d45c1199))
11+
512
### [3.3.1](https://github.com/webpack-contrib/css-loader/compare/v3.3.0...v3.3.1) (2019-12-12)
613

714

‎azure-pipelines.yml

+39-22
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@ trigger:
22
- master
33
- next
44

5+
variables:
6+
npm_config_cache: $(Pipeline.Workspace)/.npm
7+
58
jobs:
69
- job: Lint
710
pool:
8-
vmImage: ubuntu-16.04
11+
vmImage: ubuntu-latest
912
steps:
1013
- task: NodeTool@0
1114
inputs:
@@ -20,10 +23,12 @@ jobs:
2023
node -v
2124
npm -v
2225
displayName: 'Print versions'
23-
- task: Npm@1
26+
- task: CacheBeta@1
2427
inputs:
25-
command: custom
26-
customCommand: ci
28+
key: npm | $(Agent.OS) | package-lock.json
29+
path: $(npm_config_cache)
30+
displayName: 'Cache npm'
31+
- script: npm ci
2732
displayName: 'Install dependencies'
2833
- script: npm run lint
2934
displayName: 'Run lint'
@@ -34,10 +39,13 @@ jobs:
3439

3540
- job: Linux
3641
pool:
37-
vmImage: ubuntu-16.04
42+
vmImage: ubuntu-latest
3843
strategy:
39-
maxParallel: 4
44+
maxParallel: 5
4045
matrix:
46+
node-13:
47+
node_version: ^13.0.0
48+
webpack_version: latest
4149
node-12:
4250
node_version: ^12.0.0
4351
webpack_version: latest
@@ -50,7 +58,6 @@ jobs:
5058
node-10-canary:
5159
node_version: ^10.13.0
5260
webpack_version: next
53-
continue_on_error: true
5461
steps:
5562
- task: NodeTool@0
5663
inputs:
@@ -65,10 +72,12 @@ jobs:
6572
node -v
6673
npm -v
6774
displayName: 'Print versions'
68-
- task: Npm@1
75+
- task: CacheBeta@1
6976
inputs:
70-
command: custom
71-
customCommand: ci
77+
key: npm | $(Agent.OS) | package-lock.json
78+
path: $(npm_config_cache)
79+
displayName: 'Cache npm'
80+
- script: npm ci
7281
displayName: 'Install dependencies'
7382
- script: npm i webpack@$(webpack_version)
7483
displayName: 'Install "webpack@$(webpack_version)"'
@@ -86,10 +95,13 @@ jobs:
8695

8796
- job: macOS
8897
pool:
89-
vmImage: macOS-10.14
98+
vmImage: macOS-latest
9099
strategy:
91-
maxParallel: 4
100+
maxParallel: 5
92101
matrix:
102+
node-13:
103+
node_version: ^13.0.0
104+
webpack_version: latest
93105
node-12:
94106
node_version: ^12.0.0
95107
webpack_version: latest
@@ -102,7 +114,6 @@ jobs:
102114
node-10-canary:
103115
node_version: ^10.13.0
104116
webpack_version: next
105-
continue_on_error: true
106117
steps:
107118
- task: NodeTool@0
108119
inputs:
@@ -117,10 +128,12 @@ jobs:
117128
node -v
118129
npm -v
119130
displayName: 'Print versions'
120-
- task: Npm@1
131+
- task: CacheBeta@1
121132
inputs:
122-
command: custom
123-
customCommand: ci
133+
key: npm | $(Agent.OS) | package-lock.json
134+
path: $(npm_config_cache)
135+
displayName: 'Cache npm'
136+
- script: npm ci
124137
displayName: 'Install dependencies'
125138
- script: npm i webpack@$(webpack_version)
126139
displayName: 'Install "webpack@$(webpack_version)"'
@@ -138,10 +151,13 @@ jobs:
138151

139152
- job: Windows
140153
pool:
141-
vmImage: windows-2019
154+
vmImage: windows-latest
142155
strategy:
143-
maxParallel: 4
156+
maxParallel: 5
144157
matrix:
158+
node-13:
159+
node_version: ^13.0.0
160+
webpack_version: latest
145161
node-12:
146162
node_version: ^12.0.0
147163
webpack_version: latest
@@ -154,7 +170,6 @@ jobs:
154170
node-10-canary:
155171
node_version: ^10.13.0
156172
webpack_version: next
157-
continue_on_error: true
158173
steps:
159174
- script: 'git config --global core.autocrlf input'
160175
displayName: 'Config git core.autocrlf'
@@ -172,10 +187,12 @@ jobs:
172187
node -v
173188
npm -v
174189
displayName: 'Print versions'
175-
- task: Npm@1
190+
- task: CacheBeta@1
176191
inputs:
177-
command: custom
178-
customCommand: ci
192+
key: npm | $(Agent.OS) | package-lock.json
193+
path: $(npm_config_cache)
194+
displayName: 'Cache npm'
195+
- script: npm ci
179196
displayName: 'Install dependencies'
180197
- script: npm i webpack@$(webpack_version)
181198
displayName: 'Install "webpack@$(webpack_version)"'

‎lint-staged.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
'*.js': ['prettier --write', 'eslint --fix', 'git add'],
3-
'*.{json,md,yml,css}': ['prettier --write', 'git add'],
3+
'*.{json,md,yml,css,ts}': ['prettier --write', 'git add'],
44
};

0 commit comments

Comments
 (0)
Please sign in to comment.