Skip to content

Commit d85eed0

Browse files
authored
Merge pull request #176 from bandzoogle/esbuild-compile
Add `browser` property
2 parents 131a27f + 429950a commit d85eed0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"name": "w3c-css-validator",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Easily validate CSS using W3C's public CSS validator service",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [
88
"dist/"
99
],
10+
"browser": {
11+
"https": false,
12+
"util": false
13+
},
1014
"scripts": {
1115
"dev": "yarn install --frozen-lockfile && yarn compile && yarn --cwd ./website install --frozen-lockfile",
1216
"test": "jest && rugged",

test-projects/browser/webpack.config.js

-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ module.exports = {
1313
},
1414
resolve: {
1515
extensions: ['.ts', '.js'],
16-
fallback: {
17-
https: false,
18-
util: false,
19-
},
2016
},
2117
output: {
2218
filename: 'bundle.js',

0 commit comments

Comments
 (0)