@salesforce/lds-adapters-platform-learning-content 1.246.0 → 1.247.0
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/package.json +10 -6
- package/sfdc/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-learning-content",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.247.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Learning content platform",
|
|
6
6
|
"main": "dist/es/es2018/platform-learning-content.js",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"a.dandekar@salesforce.com"
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "yarn build:services
|
|
30
|
+
"build": "yarn build:services",
|
|
31
31
|
"build:karma": "rollup --bundleConfigAsCjs --config rollup.config.karma.js",
|
|
32
32
|
"build:raml": "luvio generate src/raml/luvio.raml src/generated -p '../lds-compiler-plugins'",
|
|
33
33
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
34
34
|
"clean": "rm -rf dist sfdc src/generated karma/dist",
|
|
35
35
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-learning-content",
|
|
36
36
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-platform-learning-content",
|
|
37
|
-
"start": "karma start",
|
|
38
|
-
"test": "karma start --single-run",
|
|
39
|
-
"test:compat": "karma start --single-run --compat"
|
|
37
|
+
"start": "nx build:karma && karma start",
|
|
38
|
+
"test": "nx build:karma && karma start --single-run",
|
|
39
|
+
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@salesforce/lds-bindings": "*"
|
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
"build": {
|
|
51
51
|
"outputs": [
|
|
52
52
|
"{projectRoot}/dist",
|
|
53
|
-
"{projectRoot}/karma/dist",
|
|
54
53
|
"{projectRoot}/sfdc"
|
|
55
54
|
]
|
|
56
55
|
},
|
|
@@ -58,6 +57,11 @@
|
|
|
58
57
|
"outputs": [
|
|
59
58
|
"{projectRoot}/src/generated"
|
|
60
59
|
]
|
|
60
|
+
},
|
|
61
|
+
"build:karma": {
|
|
62
|
+
"outputs": [
|
|
63
|
+
"{projectRoot}/karma/dist"
|
|
64
|
+
]
|
|
61
65
|
}
|
|
62
66
|
}
|
|
63
67
|
},
|
package/sfdc/index.js
CHANGED
|
@@ -5086,4 +5086,4 @@ withDefaultLuvio((luvio) => {
|
|
|
5086
5086
|
});
|
|
5087
5087
|
|
|
5088
5088
|
export { evaluateLearningItem, getFeaturedItemsRecommendedList, getFeaturedItemsRecommendedList_imperative, getFeaturedItemsRelatedList, getFeaturedItemsRelatedList_imperative, getLearningConfig, getLearningConfig_imperative, getLearningItemProgress, getLearningItemProgress_imperative, getLearningItemsList, getLearningItemsList_imperative, getLearningModel, getLearningModel_imperative, getLearningPractice, getLearningPracticeNotifyChange, getLearningPractice_imperative, getModule, getModuleNotifyChange, getModule_imperative, getTextLesson, getTextLessonNotifyChange, getTextLesson_imperative };
|
|
5089
|
-
// version: 1.
|
|
5089
|
+
// version: 1.247.0-418b3895b
|