@w0s/base.css 1.3.3 → 1.4.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/README.md +1 -0
- package/dist/base.css +3 -0
- package/package.json +17 -10
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# base.css
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@w0s/base.css)
|
|
4
|
+
[](https://github.com/SaekiTominaga/base.css/actions/workflows/ci.yml)
|
|
4
5
|
|
|
5
6
|
私の個人サイト([`w0s.jp`](https://github.com/SaekiTominaga/w0s.jp), [`blog.w0s.jp`](https://github.com/SaekiTominaga/blog.w0s.jp))で使用している、いわゆるリセット CSS です。個人的な用途をモチベーションに開発していますが、本ドキュメントで記す条件、考え方にマッチしているのであればどのような Web サイトにも使えます。
|
|
6
7
|
|
package/dist/base.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w0s/base.css",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Base CSS file used on `w0s.jp`",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"reset-css",
|
|
@@ -30,15 +30,22 @@
|
|
|
30
30
|
"lint": "stylelint demo/**/*.css src/**/*.css"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@w0s/stylelint-config": "
|
|
34
|
-
"http-server": "
|
|
35
|
-
"postcss": "
|
|
36
|
-
"postcss-cli": "
|
|
37
|
-
"postcss-discard-comments": "
|
|
38
|
-
"postcss-import": "
|
|
39
|
-
"postcss-nesting": "
|
|
40
|
-
"prettier": "
|
|
41
|
-
"rimraf": "
|
|
33
|
+
"@w0s/stylelint-config": "4.20.0",
|
|
34
|
+
"http-server": "14.1.1",
|
|
35
|
+
"postcss": "8.5.6",
|
|
36
|
+
"postcss-cli": "11.0.1",
|
|
37
|
+
"postcss-discard-comments": "7.0.5",
|
|
38
|
+
"postcss-import": "16.1.1",
|
|
39
|
+
"postcss-nesting": "14.0.0",
|
|
40
|
+
"prettier": "3.7.4",
|
|
41
|
+
"rimraf": "6.1.2",
|
|
42
|
+
"stylelint": "17.8.0",
|
|
43
|
+
"stylelint-attribute-case-sensitivity": "3.0.1",
|
|
44
|
+
"stylelint-config-concentric-order": "5.5.0",
|
|
45
|
+
"stylelint-config-standard": "40.0.0",
|
|
46
|
+
"stylelint-no-default-viewport": "2.0.1",
|
|
47
|
+
"stylelint-plugin-logical-css": "2.1.0",
|
|
48
|
+
"stylelint-root-colors": "3.0.1"
|
|
42
49
|
},
|
|
43
50
|
"publishConfig": {
|
|
44
51
|
"access": "public"
|