adapt-authoring-lang 1.2.2 → 1.2.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/.github/workflows/releases.yml +2 -1
- package/bin/check.js +1 -1
- package/package.json +1 -9
package/bin/check.js
CHANGED
|
@@ -47,7 +47,7 @@ async function check () {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
async function getTranslatedStrings () {
|
|
50
|
-
const langPacks = await glob(`${root}/adapt-authoring
|
|
50
|
+
const langPacks = await glob(`${root}/adapt-authoring-*/lang`)
|
|
51
51
|
const keyMap = {}
|
|
52
52
|
await Promise.all((langPacks).map(async l => {
|
|
53
53
|
await Promise.all((await fs.readdir(l)).map(async f => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adapt-authoring-lang",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Localisation for the Adapt authoring tool",
|
|
5
5
|
"homepage": "https://github.com/taylortom/adapt-authoring-lang",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -21,14 +21,6 @@
|
|
|
21
21
|
"adapt-authoring-auth": "^1.0.7",
|
|
22
22
|
"adapt-authoring-server": "^2.0.0"
|
|
23
23
|
},
|
|
24
|
-
"peerDependenciesMeta": {
|
|
25
|
-
"adapt-authoring-auth": {
|
|
26
|
-
"optional": true
|
|
27
|
-
},
|
|
28
|
-
"adapt-authoring-server": {
|
|
29
|
-
"optional": true
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
24
|
"devDependencies": {
|
|
33
25
|
"@semantic-release/git": "^10.0.1",
|
|
34
26
|
"conventional-changelog-eslint": "^6.0.0",
|