@learnpack/learnpack 5.0.140 → 5.0.142
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/README.md +13 -13
- package/lib/commands/serve.js +1 -0
- package/lib/creatorDist/assets/{index-D5Lznxst.js → index-BLd63KeV.js} +3851 -3849
- package/lib/creatorDist/index.html +1 -1
- package/lib/utils/creatorUtilities.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/src/commands/serve.ts +2 -0
- package/src/creator/src/App.tsx +2 -7
- package/src/creator/src/components/syllabus/SyllabusEditor.tsx +2 -1
- package/src/creator/src/utils/constants.ts +3 -0
- package/src/creatorDist/assets/{index-D5Lznxst.js → index-BLd63KeV.js} +3851 -3849
- package/src/creatorDist/index.html +1 -1
- package/src/ui/_app/app.css +1 -1
- package/src/ui/_app/app.js +195 -195
- package/src/ui/_app/index.html +2 -2
- package/src/ui/app.tar.gz +0 -0
- package/src/utils/creatorUtilities.ts +1 -1
package/src/ui/_app/index.html
CHANGED
@@ -94,14 +94,14 @@
|
|
94
94
|
// Add CSS
|
95
95
|
const link = document.createElement('link');
|
96
96
|
link.rel = 'stylesheet';
|
97
|
-
link.href = "https://
|
97
|
+
link.href = "https://d3a7w3e3g8ydll.cloudfront.net/learnpack/v5/app.css?v=" + Date.now();
|
98
98
|
document.head.appendChild(link);
|
99
99
|
|
100
100
|
// Add JavaScript
|
101
101
|
const script = document.createElement('script');
|
102
102
|
script.type = 'module';
|
103
103
|
script.crossOrigin = 'anonymous';
|
104
|
-
script.src = "https://
|
104
|
+
script.src = "https://d3a7w3e3g8ydll.cloudfront.net/learnpack/v5/app.js?v=" + Date.now();
|
105
105
|
document.body.appendChild(script);
|
106
106
|
})();
|
107
107
|
</script>
|
package/src/ui/app.tar.gz
CHANGED
Binary file
|