@learnpack/learnpack 5.0.172 → 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.
Files changed (34) hide show
  1. package/README.md +13 -13
  2. package/lib/commands/serve.js +42 -2
  3. package/{src/creatorDist/assets/index-C_YTggyk.css → lib/creatorDist/assets/index-CrWESWmj.css} +43 -11
  4. package/lib/creatorDist/assets/index-T7usmMYO.js +32991 -0
  5. package/lib/creatorDist/index.html +2 -2
  6. package/lib/utils/api.d.ts +1 -1
  7. package/lib/utils/api.js +2 -1
  8. package/lib/utils/readDocuments.d.ts +0 -0
  9. package/lib/utils/readDocuments.js +1 -0
  10. package/oclif.manifest.json +1 -1
  11. package/package.json +3 -1
  12. package/src/commands/serve.ts +56 -2
  13. package/src/creator/src/App.tsx +51 -34
  14. package/src/creator/src/components/ConsumablesManager.tsx +1 -0
  15. package/src/creator/src/components/FileUploader.tsx +64 -52
  16. package/src/creator/src/components/Login.tsx +172 -82
  17. package/src/creator/src/components/ResumeCourseModal.tsx +38 -0
  18. package/src/creator/src/components/StepWizard.tsx +12 -10
  19. package/src/creator/src/components/TurnstileChallenge.tsx +2 -7
  20. package/src/creator/src/components/syllabus/ContentIndex.tsx +1 -0
  21. package/src/creator/src/components/syllabus/SyllabusEditor.tsx +54 -20
  22. package/src/creator/src/utils/constants.ts +2 -1
  23. package/src/creator/src/utils/lib.ts +55 -0
  24. package/src/creator/src/utils/rigo.ts +12 -5
  25. package/src/creator/src/utils/store.ts +22 -1
  26. package/{lib/creatorDist/assets/index-C_YTggyk.css → src/creatorDist/assets/index-CrWESWmj.css} +43 -11
  27. package/src/creatorDist/assets/index-T7usmMYO.js +32991 -0
  28. package/src/creatorDist/index.html +2 -2
  29. package/src/utils/api.ts +2 -1
  30. package/src/utils/readDocuments.ts +0 -0
  31. package/lib/creatorDist/assets/index-CCvMFC6N.js +0 -83701
  32. package/lib/creatorDist/assets/pdf.worker-DSVOJ9H9.js +0 -56037
  33. package/src/creatorDist/assets/index-CCvMFC6N.js +0 -83701
  34. package/src/creatorDist/assets/pdf.worker-DSVOJ9H9.js +0 -56037
@@ -10,8 +10,8 @@
10
10
  />
11
11
 
12
12
  <title>Learnpack Creator: Craft tutorials in seconds!</title>
13
- <script type="module" crossorigin src="/creator/assets/index-CCvMFC6N.js"></script>
14
- <link rel="stylesheet" crossorigin href="/creator/assets/index-C_YTggyk.css">
13
+ <script type="module" crossorigin src="/creator/assets/index-T7usmMYO.js"></script>
14
+ <link rel="stylesheet" crossorigin href="/creator/assets/index-CrWESWmj.css">
15
15
  </head>
16
16
  <body>
17
17
  <div id="root"></div>
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