@learnpack/learnpack 5.0.33 → 5.0.35
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 +12 -12
- package/lib/commands/breakToken.js +36 -8
- package/lib/commands/init.js +49 -37
- package/lib/managers/config/exercise.js +16 -0
- package/lib/managers/server/routes.js +21 -0
- package/lib/models/exercise-obj.d.ts +1 -0
- package/lib/utils/creatorUtilities.d.ts +43 -1
- package/lib/utils/creatorUtilities.js +123 -22
- package/lib/utils/rigoActions.d.ts +3 -1
- package/lib/utils/rigoActions.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +4 -1
- package/src/commands/breakToken.ts +67 -36
- package/src/commands/init.ts +100 -65
- package/src/managers/config/exercise.ts +18 -1
- package/src/managers/server/routes.ts +26 -0
- package/src/models/exercise-obj.ts +30 -29
- package/src/utils/creatorUtilities.ts +143 -23
- package/src/utils/rigoActions.ts +3 -1
package/src/utils/rigoActions.ts
CHANGED
@@ -300,8 +300,10 @@ type TReduceReadmeInputs = {
|
|
300
300
|
lesson: string
|
301
301
|
number_of_words: string
|
302
302
|
expected_number_words: string
|
303
|
+
fkgl_results: string
|
304
|
+
expected_grade_level: string
|
303
305
|
}
|
304
|
-
export async function
|
306
|
+
export async function makeReadmeReadable(
|
305
307
|
rigoToken: string,
|
306
308
|
inputs: TReduceReadmeInputs
|
307
309
|
) {
|