yukichant 3.0.4 → 3.0.5

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.
@@ -39,10 +39,6 @@ jobs:
39
39
 
40
40
  - run: node -v
41
41
  - uses: actions/checkout@v2
42
- - name: Use Node.js ${{ matrix.node-version }}
43
- uses: actions/setup-node@v2
44
- with:
45
- node-version: ${{ matrix.node-version }}
46
42
 
47
43
  - name: install yukichant on local
48
44
  run: |
@@ -52,6 +48,10 @@ jobs:
52
48
  - name: mkdir sandbox
53
49
  run: mkdir -p ./exec_dir
54
50
 
51
+ - name: check cli path
52
+ run: which chant
53
+ working-directory: ./exec_dir
54
+
55
55
  - run: chant
56
56
  working-directory: ./exec_dir
57
57
 
package/README.md CHANGED
@@ -28,25 +28,13 @@ $ chant
28
28
  水面も灰塵に蒼穹を抗え。
29
29
  ```
30
30
 
31
- ## Develop
32
-
33
- install dependency
34
- ```bash
35
- $ npm install
36
- ```
37
-
38
- execute command
39
- ```bash
40
- ## run encode
41
- $ npm run dev unko
42
- ## run decode
43
- $ npm run dev unko | npm run dev -- -d
44
- ```
45
-
46
- ## LICENSE
47
- Apache-2.0
31
+ ## Documentation for Developers
32
+ [develop](/doc/develop.md)
48
33
 
49
34
  ## Thanks
50
35
  I named "yukichant" by Nagato Yuki-chan + chant .
51
36
  because I want to chant magic words like her.
52
37
 
38
+ ## LICENSE
39
+ Apache-2.0
40
+
package/data/meisi.json CHANGED
@@ -222,6 +222,7 @@
222
222
  "DC": ["幸運","幸福を"],
223
223
  "DD": ["己が","己の"],
224
224
  "DE": ["古の","古今"],
225
+ "DF": ["立ち上がり"],
225
226
  "E0": ["幻と","幻を"],
226
227
  "E1": ["恵の","恵みを"],
227
228
  "E2": ["具現は","具足を"],
package/doc/develop.md ADDED
@@ -0,0 +1,20 @@
1
+ Develop
2
+ ---
3
+
4
+ ## install dependency
5
+ ```bash
6
+ $ npm install
7
+ ```
8
+
9
+ ## execute command
10
+ ```bash
11
+ ## run encode
12
+ $ npm run dev unko
13
+ ## run decode
14
+ $ npm run dev unko | npm run dev -- -d
15
+ ```
16
+
17
+ ## generate meisi.json
18
+ ```bash
19
+ $ ./raw_data/meisi_json_generator
20
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yukichant",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "amanoese/yukichant",