@akimeaki/reset-css 0.6.0 → 0.8.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 CHANGED
@@ -1,3 +1,11 @@
1
+ # About
2
+
3
+ 作者が個人的に使っているリセットCSSです。
4
+ 好みベースの設計なので、必要に応じて自由に調整してください。
5
+
6
+ This is a reset CSS that the author uses for personal projects.
7
+ It is designed based on personal preferences, so feel free to adjust it as needed.
8
+
1
9
  # インストール
2
10
 
3
11
  ```
package/modules/reset.css CHANGED
@@ -1 +1 @@
1
- @layer aki-reset{body{font-family:"游ゴシック体",YuGothic,"游ゴシック","メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS Pゴシック",sans-serif;font-size:18px;line-height:1;color:#494949;text-decoration:none;font-weight:normal;font-variant-ligatures:none;-webkit-tap-highlight-color:rgba(0,0,0,0);word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}*{box-sizing:inherit;box-sizing:border-box;padding:0;margin:0;text-align:left;word-wrap:inherit;overflow-wrap:inherit;word-break:inherit;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-decoration:inherit;font-weight:inherit;font-variant-ligatures:inherit;-webkit-tap-highlight-color:inherit;border:none}*:focus{outline:none}html,body{width:100%;height:100%}ul,ol{padding-block-start:0;padding-block-end:0;padding-inline-start:40px;margin-inline-start:0;margin-inline-end:0}input,select{appearance:none;border:1px solid #000;border-radius:0}}
1
+ @layer aki-reset{body{font-family:"游ゴシック体",YuGothic,"游ゴシック","メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","MS Pゴシック",sans-serif;font-size:18px;line-height:1;color:#494949;text-decoration:none;font-weight:normal;font-variant-ligatures:none;-webkit-tap-highlight-color:rgba(0,0,0,0);word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}*{box-sizing:inherit;box-sizing:border-box;padding:0;margin:0;text-align:left;word-wrap:inherit;overflow-wrap:inherit;word-break:inherit;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-decoration:inherit;font-weight:inherit;font-variant-ligatures:inherit;-webkit-tap-highlight-color:inherit;border:none}*:focus{outline:none}html,body{width:100%;height:100%}ul,ol{padding-block-start:0;padding-block-end:0;padding-inline-start:40px;margin-inline-start:0;margin-inline-end:0}input,select,textarea{appearance:none;background-color:rgba(0,0,0,0);border:1px solid #494949;border-radius:0}textarea{resize:none}button{background-color:rgba(0,0,0,0);border:1px solid #494949;border-radius:0}table,thead,tbody,tr,th,td{border:1px solid #494949;border-radius:0;border-collapse:collapse}}
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "@akimeaki/reset-css",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "type": "module",
5
5
  "main": "./modules/reset.css",
6
+ "engines": {
7
+ "node": "24.12.0",
8
+ "npm": "11.6.2"
9
+ },
10
+ "volta": {
11
+ "node": "24.12.0",
12
+ "npm": "11.6.2"
13
+ },
6
14
  "files": [
7
15
  "modules"
8
16
  ],
@@ -13,12 +21,12 @@
13
21
  },
14
22
  "scripts": {
15
23
  "format": "prettier --write './**/*'",
16
- "build": "rm -rf ./modules/* && sass --no-source-map --style=compressed ./src/reset.scss ./modules/reset.css",
17
- "push": "npm run build && npm login && npm publish --access=public"
24
+ "build": "rimraf ./modules/ && sass --no-source-map --style=compressed ./src/reset.scss ./modules/reset.css"
18
25
  },
19
26
  "devDependencies": {
20
27
  "prettier": "3.3.3",
21
28
  "prettier-plugin-sh": "0.14.0",
29
+ "rimraf": "6.1.2",
22
30
  "sass": "1.87.0"
23
31
  }
24
32
  }