We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 131a27f + 429950a commit d85eed0Copy full SHA for d85eed0
package.json
@@ -1,12 +1,16 @@
1
{
2
"name": "w3c-css-validator",
3
- "version": "1.3.1",
+ "version": "1.3.2",
4
"description": "Easily validate CSS using W3C's public CSS validator service",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
7
"files": [
8
"dist/"
9
],
10
+ "browser": {
11
+ "https": false,
12
+ "util": false
13
+ },
14
"scripts": {
15
"dev": "yarn install --frozen-lockfile && yarn compile && yarn --cwd ./website install --frozen-lockfile",
16
"test": "jest && rugged",
test-projects/browser/webpack.config.js
@@ -13,10 +13,6 @@ module.exports = {
},
resolve: {
extensions: ['.ts', '.js'],
- fallback: {
17
- https: false,
18
- util: false,
19
- },
20
21
output: {
22
filename: 'bundle.js',
0 commit comments