feat: support CJK & ANS spacing
This commit is contained in:
parent
25cfc2229a
commit
f601c82590
13 changed files with 1125 additions and 87 deletions
22
package.json
22
package.json
|
@ -10,11 +10,13 @@
|
|||
"lib": "lib"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "node-sass -w --output-style=expanded lib/heti.scss _site/heti.min.css",
|
||||
"start": "node-sass -w --output-style=expanded lib/heti.scss _site/heti.debug.css",
|
||||
"build:expanded": "node-sass lib/heti.scss dist/heti.css --output-style=expanded",
|
||||
"build:compressed": "node-sass lib/heti.scss dist/heti.min.css --output-style=compressed",
|
||||
"build": "npm run build:expanded && npm run build:compressed",
|
||||
"test": "npx stylelint --config package.json 'lib/**/*.scss'"
|
||||
"build:script": "rollup -c",
|
||||
"build": "npm run build:expanded && npm run build:compressed && npm run build:script",
|
||||
"test": "npx stylelint --config package.json 'lib/**/*.scss'",
|
||||
"compile": "rollup -c -w"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -33,8 +35,14 @@
|
|||
"url": "https://github.com/sivan/heti/issues"
|
||||
},
|
||||
"homepage": "https://github.com/sivan/heti#readme",
|
||||
"dependencies": {
|
||||
"findandreplacedomtext": "^0.4.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^11.0.2",
|
||||
"@rollup/plugin-node-resolve": "^7.1.1",
|
||||
"node-sass": "^4.13.1",
|
||||
"rollup-plugin-terser": "^5.2.0",
|
||||
"stylelint": "^13.0.0",
|
||||
"stylelint-config-recommended-scss": "^4.1.0",
|
||||
"stylelint-config-standard": "^19.0.0",
|
||||
|
@ -53,6 +61,14 @@
|
|||
"selectors-within-list"
|
||||
]
|
||||
}
|
||||
],
|
||||
"selector-type-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignore": [
|
||||
"custom-elements"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue