@bhsd/stylelint-browserify 16.26.0 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle/stylelint.min.js +37 -39
- package/package.json +4 -8
- package/bundle/stylelint-es8.min.js +0 -46
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bhsd/stylelint-browserify",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "Stylelint in browser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stylelint",
|
|
@@ -31,10 +31,9 @@
|
|
|
31
31
|
"lint": "npm run lint:ts && npm run lint:md",
|
|
32
32
|
"build": "npm run bundle && npm run minify",
|
|
33
33
|
"bundle": "node build.js",
|
|
34
|
-
"minify": "esbuild index.ts --charset=utf8 --bundle --minify --sourcemap --target=es2019 --outfile=bundle/stylelint.min.js --legal-comments=external
|
|
34
|
+
"minify": "esbuild index.ts --charset=utf8 --bundle --minify --sourcemap --target=es2019 --outfile=bundle/stylelint.min.js --legal-comments=external",
|
|
35
35
|
"test:main": "mocha --no-experimental-require-module --require bundle/stylelint.min.js",
|
|
36
|
-
"test
|
|
37
|
-
"test": "npm run test:main && npm run test:es8",
|
|
36
|
+
"test": "npm run test:main",
|
|
38
37
|
"clean": "find test/tests/ -type f -name '*.mjs' | xargs gsed -i \"s|'../../../testUtils/mergeTestDescriptions.mjs'|'../mergeTestDescriptions.mjs'| ; s|'../../../__tests__/fixtures/postcss-naive-css-in-js.cjs'|'../postcss-naive-css-in-js.mjs'| ; s|'postcss'|'../postcss.mjs'| ; s|'postcss-import'|'../postcss-import.mjs'| ; s|'../../../postcssPlugin.mjs'|'../postcssPlugin.mjs'| ; s|} = rule;|} = {...rule, ruleName: filename(import.meta.url)};|\"; eslint test/tests/*.mjs"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
@@ -58,10 +57,7 @@
|
|
|
58
57
|
"globals": "^16.5.0",
|
|
59
58
|
"markdownlint-cli2": "^0.19.0",
|
|
60
59
|
"mocha": "^11.7.5",
|
|
61
|
-
"stylelint": "^
|
|
60
|
+
"stylelint": "^17.0.0",
|
|
62
61
|
"typescript": "^5.9.3"
|
|
63
|
-
},
|
|
64
|
-
"engines": {
|
|
65
|
-
"node": ">=20.19.5"
|
|
66
62
|
}
|
|
67
63
|
}
|