adapt-authoring-ui 1.5.7 → 1.5.8
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/app/core/helpers.js +2 -2
- package/package.json +3 -16
package/app/core/helpers.js
CHANGED
|
@@ -34,8 +34,8 @@ define(['handlebars', 'moment', 'core/origin'], function(Handlebars, Moment, Ori
|
|
|
34
34
|
|
|
35
35
|
keyToTitleString: function(key) {
|
|
36
36
|
if (!key) return;
|
|
37
|
-
// check translatable strings first
|
|
38
|
-
var l10nKey = 'app
|
|
37
|
+
// check translatable strings first (array to avoid langstring check)
|
|
38
|
+
var l10nKey = ['app', 'scaffold', key].join('.);
|
|
39
39
|
if(Origin.l10n.has(l10nKey)) {
|
|
40
40
|
return Origin.l10n.t(l10nKey);
|
|
41
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adapt-authoring-ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.8",
|
|
4
4
|
"description": "Front-end application for the Adapt authoring tool",
|
|
5
5
|
"homepage": "https://github.com/adapt-security/adapt-authoring-ui",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"cpy": "^9.0.1",
|
|
26
26
|
"fs-extra": "^11.2.0",
|
|
27
27
|
"gaze": "^1.1.3",
|
|
28
|
-
"glob": "^
|
|
28
|
+
"glob": "^13.0.0",
|
|
29
29
|
"handlebars": "^4.7.8",
|
|
30
30
|
"less": "^4.2.0",
|
|
31
31
|
"magic-string": "^0.30.0",
|
|
@@ -36,14 +36,9 @@
|
|
|
36
36
|
"upath": "^2.0.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
40
39
|
"@semantic-release/git": "^10.0.1",
|
|
41
|
-
"@semantic-release/github": "^12.0.2",
|
|
42
|
-
"@semantic-release/npm": "^13.1.2",
|
|
43
|
-
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
44
40
|
"conventional-changelog-eslint": "^6.0.0",
|
|
45
41
|
"semantic-release": "^25.0.2",
|
|
46
|
-
"semantic-release-replace-plugin": "^1.2.7",
|
|
47
42
|
"standard": "^17.1.0"
|
|
48
43
|
},
|
|
49
44
|
"release": {
|
|
@@ -62,15 +57,7 @@
|
|
|
62
57
|
],
|
|
63
58
|
"@semantic-release/npm",
|
|
64
59
|
"@semantic-release/github",
|
|
65
|
-
|
|
66
|
-
"@semantic-release/git",
|
|
67
|
-
{
|
|
68
|
-
"assets": [
|
|
69
|
-
"package.json"
|
|
70
|
-
],
|
|
71
|
-
"message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
72
|
-
}
|
|
73
|
-
]
|
|
60
|
+
"@semantic-release/git"
|
|
74
61
|
]
|
|
75
62
|
},
|
|
76
63
|
"standard": {
|