@naturalcycles/dev-lib 13.18.0 → 13.19.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/cfg/stylelint.config.js +2 -1
- package/package.json +2 -3
- package/cfg/overwrite/.gitignore +0 -55
package/cfg/stylelint.config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
extends: ['stylelint-config-standard-scss'
|
|
2
|
+
extends: ['stylelint-config-standard-scss'],
|
|
3
3
|
rules: {
|
|
4
4
|
'no-empty-source': null,
|
|
5
5
|
'color-hex-length': 'short',
|
|
@@ -8,6 +8,7 @@ module.exports = {
|
|
|
8
8
|
// keep units in css variables because their absence breaks css calculations
|
|
9
9
|
{ ignore: ['custom-properties'] },
|
|
10
10
|
],
|
|
11
|
+
'declaration-property-value-no-unknown': true,
|
|
11
12
|
// Prettier covers these rules already:
|
|
12
13
|
// 'color-hex-case': 'lower',
|
|
13
14
|
// 'number-leading-zero': 'always',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/dev-lib",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.19.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"prepare": "husky install",
|
|
6
6
|
"tsn-debug": "tsn testScript.ts",
|
|
@@ -58,8 +58,7 @@
|
|
|
58
58
|
"lint-staged": "^13.0.0",
|
|
59
59
|
"mitm": "^1.7.0",
|
|
60
60
|
"prettier": "^2.0.4",
|
|
61
|
-
"stylelint": "^
|
|
62
|
-
"stylelint-config-prettier": "^9.0.3",
|
|
61
|
+
"stylelint": "^15.0.0",
|
|
63
62
|
"stylelint-config-standard-scss": "^6.0.0",
|
|
64
63
|
"timekeeper": "^2.2.0",
|
|
65
64
|
"ts-jest": "^29.0.0",
|
package/cfg/overwrite/.gitignore
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# DO NOT MODIFY, WILL BE OVERWRITTEN BY @naturalcycles/dev-lib
|
|
3
|
-
#
|
|
4
|
-
# You can put more .gitignore files in your respective subfolders (e.g `src`) to ignore additional things.
|
|
5
|
-
# Or PR to @naturalcycles/dev-lib if you want to ignore something generic.
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
#
|
|
9
|
-
# Global (all dirs)
|
|
10
|
-
#
|
|
11
|
-
*.iml
|
|
12
|
-
.idea
|
|
13
|
-
.DS_Store
|
|
14
|
-
node_modules
|
|
15
|
-
.env
|
|
16
|
-
.npmrc
|
|
17
|
-
.classpath
|
|
18
|
-
.project
|
|
19
|
-
.settings
|
|
20
|
-
.externalToolBuilders
|
|
21
|
-
.cache
|
|
22
|
-
.stencil
|
|
23
|
-
.nuxt
|
|
24
|
-
.gitconfig
|
|
25
|
-
.lighthouseci
|
|
26
|
-
|
|
27
|
-
#
|
|
28
|
-
# Root dir
|
|
29
|
-
#
|
|
30
|
-
/target
|
|
31
|
-
/*.log
|
|
32
|
-
/log.txt
|
|
33
|
-
/.sass-cache
|
|
34
|
-
/.sourcemaps
|
|
35
|
-
/docs/.vuepress/dist
|
|
36
|
-
/docs/.vitepress/dist
|
|
37
|
-
/docs/.vitepress/cache
|
|
38
|
-
/loader
|
|
39
|
-
/.angular/cache
|
|
40
|
-
|
|
41
|
-
/coverage
|
|
42
|
-
|
|
43
|
-
/dist
|
|
44
|
-
/dist-cjs
|
|
45
|
-
/dist-esm
|
|
46
|
-
/tmp
|
|
47
|
-
|
|
48
|
-
# All secrets are ignored, except encrypted
|
|
49
|
-
/secret/**/*.*
|
|
50
|
-
!/secret/**/*.enc
|
|
51
|
-
|
|
52
|
-
/scripts/try.*
|
|
53
|
-
/logs
|
|
54
|
-
/www/*
|
|
55
|
-
!/www/.gitkeep
|