postcss-enumerates-in-line 0.0.9 → 0.1.1

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.
@@ -18,11 +18,5 @@ jobs:
18
18
  with:
19
19
  node-version: '24.x'
20
20
  registry-url: 'https://registry.npmjs.org/'
21
- #scope: '@hadukinei'
22
- #- run: npm i -g npm@latest
23
21
  - run: npm ci
24
- #- run: npm pkg fix
25
- #- run: npm publish --otp=068938
26
- # env:
27
- # NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN_PEIL }}
28
22
  - run: npm publish --provenance --access public
package/README.md CHANGED
@@ -5,9 +5,9 @@
5
5
  |[<img width="24" height="24" align="left" src="README.img/1f1ef-1f1f5.png" alt="🇯🇵"> 日本語](README.md)|[<img width="24" height="24" align="left" src="README.img/1f1fa-1f1f8.png" alt="🇺🇸"> English](README_EN.md)|
6
6
 
7
7
 
8
- ## 更新点: v0.0.1
8
+ ## 更新点: v0.1.0
9
9
 
10
- - 公開開始
10
+ - サンプルのパッケージ読み込みを[npmjs.com](https://www.npmjs.com/)経由に変更
11
11
 
12
12
  ---
13
13
 
@@ -60,7 +60,7 @@
60
60
  ## 目次
61
61
 
62
62
  - [PostCSS Enumerates in Line](#postcss-enumerates-in-line)
63
- - [更新点: v0.0.1](#更新点-v001)
63
+ - [更新点: v0.1.0](#更新点-v010)
64
64
  - [目次](#目次)
65
65
  - [CSSでの記述方法](#cssでの記述方法)
66
66
  - [特殊な記号](#特殊な記号)
package/README_EN.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ## Revision: in v0.0.1
9
9
 
10
- - Begin to publish.
10
+ - Change connection a package loading from inner file-path to [npmjs.com](https://www.npmjs.com/).
11
11
 
12
12
  ---
13
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "postcss-enumerates-in-line",
3
3
  "type": "module",
4
- "version": "0.0.9",
4
+ "version": "0.1.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/hadukinei/postcss-enumerates-in-line"
@@ -16,8 +16,8 @@ const sass = gulpSass(dartSass)
16
16
  import postcss from 'gulp-postcss'
17
17
  import autoprefixer from 'autoprefixer'
18
18
  import csso from 'postcss-csso'
19
- //import { enumSpreader } from 'postcss-enumerates-in-line'
20
- import { enumSpreader } from '../../index.mjs'
19
+ import { enumSpreader } from 'postcss-enumerates-in-line'
20
+ //import { enumSpreader } from '../../index.mjs'
21
21
 
22
22
  // Live Server
23
23
  import browserSync from 'browser-sync'
@@ -16,6 +16,7 @@
16
16
  "gulp-postcss": "^10.0.0",
17
17
  "gulp-sass": "^6.0.1",
18
18
  "postcss-csso": "^6.0.1",
19
+ "postcss-enumerates-in-line": "^0.0.9",
19
20
  "sass": "^1.96.0"
20
21
  }
21
22
  },
@@ -2598,7 +2599,6 @@
2598
2599
  }
2599
2600
  ],
2600
2601
  "license": "MIT",
2601
- "peer": true,
2602
2602
  "bin": {
2603
2603
  "nanoid": "bin/nanoid.cjs"
2604
2604
  },
@@ -2858,7 +2858,6 @@
2858
2858
  }
2859
2859
  ],
2860
2860
  "license": "MIT",
2861
- "peer": true,
2862
2861
  "dependencies": {
2863
2862
  "nanoid": "^3.3.11",
2864
2863
  "picocolors": "^1.1.1",
@@ -2884,6 +2883,15 @@
2884
2883
  "postcss": "^8.0.0"
2885
2884
  }
2886
2885
  },
2886
+ "node_modules/postcss-enumerates-in-line": {
2887
+ "version": "0.0.9",
2888
+ "resolved": "https://registry.npmjs.org/postcss-enumerates-in-line/-/postcss-enumerates-in-line-0.0.9.tgz",
2889
+ "integrity": "sha512-cADG6Zp9AWPbDuet6P5zOGyjM9VYIbOTqacy+fcoNjvBzjAtxMF0yYa/KHyXn8A3ErPUXmuSgxPCNlqXwtDHPA==",
2890
+ "license": "ISC",
2891
+ "dependencies": {
2892
+ "postcss": "^8.5.6"
2893
+ }
2894
+ },
2887
2895
  "node_modules/postcss-load-config": {
2888
2896
  "version": "5.1.0",
2889
2897
  "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-5.1.0.tgz",
@@ -20,6 +20,7 @@
20
20
  "gulp-postcss": "^10.0.0",
21
21
  "gulp-sass": "^6.0.1",
22
22
  "postcss-csso": "^6.0.1",
23
+ "postcss-enumerates-in-line": "^0.0.9",
23
24
  "sass": "^1.96.0"
24
25
  }
25
26
  }
@@ -14,8 +14,8 @@ import * as dartSass from 'sass'
14
14
  import postcss from 'postcss'
15
15
  import autoprefixer from 'autoprefixer'
16
16
  import csso from 'postcss-csso'
17
- //import { enumSpreader } from 'postcss-enumerates-in-line'
18
- import { enumSpreader } from '../../index.mjs'
17
+ import { enumSpreader } from 'postcss-enumerates-in-line'
18
+ //import { enumSpreader } from '../../index.mjs'
19
19
 
20
20
 
21
21
  /**
@@ -14,6 +14,7 @@
14
14
  "npm-run-all2": "^8.0.4",
15
15
  "postcss": "^8.5.6",
16
16
  "postcss-csso": "^6.0.1",
17
+ "postcss-enumerates-in-line": "^0.0.9",
17
18
  "sass": "^1.96.0"
18
19
  }
19
20
  },
@@ -901,6 +902,15 @@
901
902
  "postcss": "^8.0.0"
902
903
  }
903
904
  },
905
+ "node_modules/postcss-enumerates-in-line": {
906
+ "version": "0.0.9",
907
+ "resolved": "https://registry.npmjs.org/postcss-enumerates-in-line/-/postcss-enumerates-in-line-0.0.9.tgz",
908
+ "integrity": "sha512-cADG6Zp9AWPbDuet6P5zOGyjM9VYIbOTqacy+fcoNjvBzjAtxMF0yYa/KHyXn8A3ErPUXmuSgxPCNlqXwtDHPA==",
909
+ "license": "ISC",
910
+ "dependencies": {
911
+ "postcss": "^8.5.6"
912
+ }
913
+ },
904
914
  "node_modules/postcss-value-parser": {
905
915
  "version": "4.2.0",
906
916
  "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
@@ -21,6 +21,7 @@
21
21
  "npm-run-all2": "^8.0.4",
22
22
  "postcss": "^8.5.6",
23
23
  "postcss-csso": "^6.0.1",
24
+ "postcss-enumerates-in-line": "^0.0.9",
24
25
  "sass": "^1.96.0"
25
26
  }
26
27
  }