@learnpack/learnpack 5.0.168 → 5.0.176
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 +42 -2
- package/{src/creatorDist/assets/index-C_YTggyk.css → lib/creatorDist/assets/index-CrWESWmj.css} +43 -11
- package/lib/creatorDist/assets/index-T7usmMYO.js +32991 -0
- package/lib/creatorDist/index.html +2 -2
- package/lib/utils/api.d.ts +1 -1
- package/lib/utils/api.js +2 -1
- package/lib/utils/readDocuments.d.ts +0 -0
- package/lib/utils/readDocuments.js +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +3 -1
- package/src/commands/serve.ts +56 -2
- package/src/creator/src/App.tsx +51 -34
- package/src/creator/src/components/ConsumablesManager.tsx +1 -0
- package/src/creator/src/components/FileUploader.tsx +64 -52
- package/src/creator/src/components/Login.tsx +172 -82
- package/src/creator/src/components/ResumeCourseModal.tsx +38 -0
- package/src/creator/src/components/StepWizard.tsx +12 -10
- package/src/creator/src/components/TurnstileChallenge.tsx +2 -7
- package/src/creator/src/components/syllabus/ContentIndex.tsx +1 -0
- package/src/creator/src/components/syllabus/SyllabusEditor.tsx +63 -29
- package/src/creator/src/utils/constants.ts +2 -1
- package/src/creator/src/utils/lib.ts +55 -0
- package/src/creator/src/utils/rigo.ts +12 -5
- package/src/creator/src/utils/store.ts +22 -1
- package/{lib/creatorDist/assets/index-C_YTggyk.css → src/creatorDist/assets/index-CrWESWmj.css} +43 -11
- package/src/creatorDist/assets/index-T7usmMYO.js +32991 -0
- package/src/creatorDist/index.html +2 -2
- package/src/ui/_app/app.js +286 -286
- package/src/ui/app.tar.gz +0 -0
- package/src/utils/api.ts +2 -1
- package/src/utils/readDocuments.ts +0 -0
- package/lib/creatorDist/assets/index-4XkqESUr.js +0 -83719
- package/lib/creatorDist/assets/pdf.worker-DSVOJ9H9.js +0 -56037
- package/src/creatorDist/assets/index-4XkqESUr.js +0 -83719
- package/src/creatorDist/assets/pdf.worker-DSVOJ9H9.js +0 -56037
package/src/ui/app.tar.gz
CHANGED
Binary file
|
package/src/utils/api.ts
CHANGED
@@ -3,7 +3,8 @@ import * as storage from "node-persist"
|
|
3
3
|
import cli from "cli-ux"
|
4
4
|
import axios from "axios"
|
5
5
|
const HOST = "https://breathecode.herokuapp.com"
|
6
|
-
export const RIGOBOT_HOST = "https://rigobot.herokuapp.com"
|
6
|
+
// export const RIGOBOT_HOST = "https://rigobot.herokuapp.com"
|
7
|
+
export const RIGOBOT_HOST = "https://rigobot-test-cca7d841c9d8.herokuapp.com"
|
7
8
|
// export const RIGOBOT_HOST =
|
8
9
|
// "https://8000-charlytoc-rigobot-bmwdeam7cev.ws-us118.gitpod.io"
|
9
10
|
|
File without changes
|