cclkit4svelte 0.1.4-a → 0.1.4-b
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ CANDY CHUPS Labのサイトで使うコンポーネントのキットです。
|
|
|
7
7
|
|
|
8
8
|
## Figma
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
https://www.figma.com/files/project/71337935/CCL_Component?fuid=1036675751093311196>
|
|
11
11
|
|
|
12
12
|
## 利用用途
|
|
13
13
|
|
|
@@ -29,14 +29,14 @@ or
|
|
|
29
29
|
|
|
30
30
|
## 本ライブラリの開発について
|
|
31
31
|
|
|
32
|
-
コンポーネントライブラリの開発には、Node.jsの
|
|
32
|
+
コンポーネントライブラリの開発には、Node.jsのVersion20以降の環境が必要です。パッケージマネージャにはnpmを使用します。詳細なバージョンについては`package.json`に記載をしていますのでご確認ください。
|
|
33
33
|
|
|
34
34
|
Node.jsのバージョン切り替えには[Volta](https://volta.sh/)をおすすめします。
|
|
35
35
|
|
|
36
36
|
```zsh
|
|
37
37
|
volta install node
|
|
38
38
|
# or
|
|
39
|
-
volta install node@
|
|
39
|
+
volta install node@20
|
|
40
40
|
|
|
41
41
|
node -v
|
|
42
42
|
#任意のNodeのバージョンが表示されればOK
|
|
@@ -65,7 +65,7 @@ Everything you need to build a Svelte project, powered by [`create-svelte`](http
|
|
|
65
65
|
|
|
66
66
|
## Figma
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
https://www.figma.com/files/project/71337935/CCL_Component?fuid=1036675751093311196>
|
|
69
69
|
|
|
70
70
|
## Usage
|
|
71
71
|
|
|
@@ -87,14 +87,14 @@ or
|
|
|
87
87
|
|
|
88
88
|
## About the development of this library
|
|
89
89
|
|
|
90
|
-
The development of component libraries requires a Node.js environment with Version
|
|
90
|
+
The development of component libraries requires a Node.js environment with Version 20 or higher. Use npm as the package manager. Please check the `package.json` for detailed version information.
|
|
91
91
|
|
|
92
92
|
We recommend [Volta](https://volta.sh/) for switching Node.js versions.
|
|
93
93
|
|
|
94
94
|
```zsh
|
|
95
95
|
volta install node
|
|
96
96
|
# or
|
|
97
|
-
volta install node@
|
|
97
|
+
volta install node@20
|
|
98
98
|
|
|
99
99
|
node -v
|
|
100
100
|
#Once the desired Node version is displayed, it is OK.
|