@syllst/ja 0.1.2 → 0.1.3
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/dist/syllabi/dialogue/lessons/lesson-04.mdx.js +2 -2
- package/dist/syllabi/travel/lessons/lesson-04.mdx.js +1 -1
- package/dist/syllabi/travel/lessons/lesson-07.mdx.js +1 -1
- package/package.json +19 -11
- package/src/syllabi/dialogue/lessons/lesson-04.mdx +2 -2
- package/src/syllabi/travel/lessons/lesson-04.mdx +1 -1
- package/src/syllabi/travel/lessons/lesson-07.mdx +1 -1
|
@@ -145,7 +145,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
|
|
|
145
145
|
|
|
146
146
|
:::
|
|
147
147
|
|
|
148
|
-
:::exercise{id="ja-dial-04-decline" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
|
|
148
|
+
:::exercise{id="ja-dial-04-decline-ex" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
|
|
149
149
|
|
|
150
150
|
**Question:** You have plans and cannot join. Decline politely using at least two phrases.
|
|
151
151
|
|
|
@@ -157,7 +157,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
|
|
|
157
157
|
|
|
158
158
|
:::
|
|
159
159
|
|
|
160
|
-
:::exercise{id="ja-dial-04-accept" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
|
|
160
|
+
:::exercise{id="ja-dial-04-accept-ex" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
|
|
161
161
|
|
|
162
162
|
**Question:** A friend invites you to dinner. Which response is the most enthusiastic acceptance?
|
|
163
163
|
|
|
@@ -156,7 +156,7 @@ Getting around Japan requires knowing how to ask for directions and understand t
|
|
|
156
156
|
|
|
157
157
|
:::
|
|
158
158
|
|
|
159
|
-
:::exercise{id="ja-travel-04-landmarks" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
|
|
159
|
+
:::exercise{id="ja-travel-04-landmarks-ex" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
|
|
160
160
|
|
|
161
161
|
**Question:** Which landmark is most reliable to ask for directions at in Japan?
|
|
162
162
|
|
|
@@ -162,7 +162,7 @@ Emergencies can happen to any traveler. Japan is one of the world's safest count
|
|
|
162
162
|
|
|
163
163
|
:::
|
|
164
164
|
|
|
165
|
-
:::exercise{id="ja-travel-07-illness" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
|
|
165
|
+
:::exercise{id="ja-travel-07-illness-ex" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
|
|
166
166
|
|
|
167
167
|
**Question:** Which phrase do you use when you feel unwell?
|
|
168
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syllst/ja",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Japanese SYLLST content - Hiragana, Katakana, Essentials, Numbers, Food, Travel, and Dialogue syllabi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,35 +8,43 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
12
13
|
},
|
|
13
14
|
"./hiragana": {
|
|
14
15
|
"types": "./dist/syllabi/hiragana/index.d.ts",
|
|
15
|
-
"import": "./dist/syllabi/hiragana/index.js"
|
|
16
|
+
"import": "./dist/syllabi/hiragana/index.js",
|
|
17
|
+
"default": "./dist/syllabi/hiragana/index.js"
|
|
16
18
|
},
|
|
17
19
|
"./katakana": {
|
|
18
20
|
"types": "./dist/syllabi/katakana/index.d.ts",
|
|
19
|
-
"import": "./dist/syllabi/katakana/index.js"
|
|
21
|
+
"import": "./dist/syllabi/katakana/index.js",
|
|
22
|
+
"default": "./dist/syllabi/katakana/index.js"
|
|
20
23
|
},
|
|
21
24
|
"./essentials": {
|
|
22
25
|
"types": "./dist/syllabi/essentials/index.d.ts",
|
|
23
|
-
"import": "./dist/syllabi/essentials/index.js"
|
|
26
|
+
"import": "./dist/syllabi/essentials/index.js",
|
|
27
|
+
"default": "./dist/syllabi/essentials/index.js"
|
|
24
28
|
},
|
|
25
29
|
"./numbers": {
|
|
26
30
|
"types": "./dist/syllabi/numbers/index.d.ts",
|
|
27
|
-
"import": "./dist/syllabi/numbers/index.js"
|
|
31
|
+
"import": "./dist/syllabi/numbers/index.js",
|
|
32
|
+
"default": "./dist/syllabi/numbers/index.js"
|
|
28
33
|
},
|
|
29
34
|
"./food": {
|
|
30
35
|
"types": "./dist/syllabi/food/index.d.ts",
|
|
31
|
-
"import": "./dist/syllabi/food/index.js"
|
|
36
|
+
"import": "./dist/syllabi/food/index.js",
|
|
37
|
+
"default": "./dist/syllabi/food/index.js"
|
|
32
38
|
},
|
|
33
39
|
"./travel": {
|
|
34
40
|
"types": "./dist/syllabi/travel/index.d.ts",
|
|
35
|
-
"import": "./dist/syllabi/travel/index.js"
|
|
41
|
+
"import": "./dist/syllabi/travel/index.js",
|
|
42
|
+
"default": "./dist/syllabi/travel/index.js"
|
|
36
43
|
},
|
|
37
44
|
"./dialogue": {
|
|
38
45
|
"types": "./dist/syllabi/dialogue/index.d.ts",
|
|
39
|
-
"import": "./dist/syllabi/dialogue/index.js"
|
|
46
|
+
"import": "./dist/syllabi/dialogue/index.js",
|
|
47
|
+
"default": "./dist/syllabi/dialogue/index.js"
|
|
40
48
|
}
|
|
41
49
|
},
|
|
42
50
|
"files": [
|
|
@@ -49,8 +57,8 @@
|
|
|
49
57
|
"vite": "^7.3.1",
|
|
50
58
|
"vite-plugin-dts": "^4.5.4",
|
|
51
59
|
"vitest": "^4.0.18",
|
|
52
|
-
"@laeng/ja": "0.1.
|
|
53
|
-
"@syllst/content-shared": "0.2.
|
|
60
|
+
"@laeng/ja": "0.1.2",
|
|
61
|
+
"@syllst/content-shared": "0.2.3"
|
|
54
62
|
},
|
|
55
63
|
"peerDependencies": {
|
|
56
64
|
"@syllst/core": "^0.4.2",
|
|
@@ -145,7 +145,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
|
|
|
145
145
|
|
|
146
146
|
:::
|
|
147
147
|
|
|
148
|
-
:::exercise{id="ja-dial-04-decline" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
|
|
148
|
+
:::exercise{id="ja-dial-04-decline-ex" type="fill-in-blank" title="Polite Decline" skill="polite-register" objectiveId="obj-ja-dial-04-decline"}
|
|
149
149
|
|
|
150
150
|
**Question:** You have plans and cannot join. Decline politely using at least two phrases.
|
|
151
151
|
|
|
@@ -157,7 +157,7 @@ In Japanese culture, saying outright "no" (いいえ) is often avoided. Instead,
|
|
|
157
157
|
|
|
158
158
|
:::
|
|
159
159
|
|
|
160
|
-
:::exercise{id="ja-dial-04-accept" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
|
|
160
|
+
:::exercise{id="ja-dial-04-accept-ex" type="multiple-choice" title="Enthusiastic Acceptance" skill="situational-response" objectiveId="obj-ja-dial-04-accept"}
|
|
161
161
|
|
|
162
162
|
**Question:** A friend invites you to dinner. Which response is the most enthusiastic acceptance?
|
|
163
163
|
|
|
@@ -156,7 +156,7 @@ Getting around Japan requires knowing how to ask for directions and understand t
|
|
|
156
156
|
|
|
157
157
|
:::
|
|
158
158
|
|
|
159
|
-
:::exercise{id="ja-travel-04-landmarks" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
|
|
159
|
+
:::exercise{id="ja-travel-04-landmarks-ex" type="multiple-choice" title="Helpful Landmarks" skill="word-production" objectiveId="obj-ja-travel-04-landmarks"}
|
|
160
160
|
|
|
161
161
|
**Question:** Which landmark is most reliable to ask for directions at in Japan?
|
|
162
162
|
|
|
@@ -162,7 +162,7 @@ Emergencies can happen to any traveler. Japan is one of the world's safest count
|
|
|
162
162
|
|
|
163
163
|
:::
|
|
164
164
|
|
|
165
|
-
:::exercise{id="ja-travel-07-illness" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
|
|
165
|
+
:::exercise{id="ja-travel-07-illness-ex" type="multiple-choice" title="Expressing Illness" skill="situational-response" objectiveId="obj-ja-travel-07-help"}
|
|
166
166
|
|
|
167
167
|
**Question:** Which phrase do you use when you feel unwell?
|
|
168
168
|
|