learningfoundry 0.35.0__tar.gz → 0.36.0__tar.gz
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.
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/CHANGELOG.md +18 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/PKG-INFO +9 -10
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/README.md +8 -9
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/pyproject.toml +1 -1
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/__init__.py +1 -1
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/cli.py +8 -12
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/pipeline.py +20 -12
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/.gitignore +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/LICENSE +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/docs/project-guide/README.md +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/__main__.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/config.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/exceptions.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/generator.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/__init__.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/d3foundry_stub.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/nbfoundry_stub.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/protocols.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/quizazz.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/logging_config.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/parser.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/py.typed +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/resolver.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/schema_v1.py +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/package.json +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/pnpm-lock.yaml +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/app.css +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/app.html +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/ContentBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/ExerciseBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/LessonList.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/LessonView.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/ModuleList.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/Navigation.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/PlaceholderBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/ProgressBar.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/ProgressDashboard.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/QuizBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/TextBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/VideoBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/components/VisualizationBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/db/database.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/db/index.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/db/progress.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/stores/curriculum.test.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/stores/curriculum.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/types/index.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/utils/markdown.test.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/lib/utils/markdown.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/routes/+layout.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/routes/+layout.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/routes/+page.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/routes/[module]/[lesson]/+page.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/static/.gitkeep +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/svelte.config.js +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/tsconfig.json +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/vite.config.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/app.css +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/app.html +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/ContentBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/ExerciseBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/LessonList.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/LessonView.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/ModuleList.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/Navigation.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/PlaceholderBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/ProgressBar.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/ProgressDashboard.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/QuizBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/TextBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/VideoBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/components/VisualizationBlock.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/db/database.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/db/index.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/db/progress.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/stores/curriculum.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/types/index.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/utils/markdown.ts +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/routes/+layout.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/routes/+page.svelte +0 -0
- {learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/routes/[module]/[lesson]/+page.svelte +0 -0
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.36.0] - 2026-04-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **`learningfoundry preview` is now the canonical "see your work" command.** Previously the post-build prompt and the README disagreed: the CLI told users to `cd dist && pnpm install && pnpm build` (a static export that exits without serving), while the README told them to run `learningfoundry preview`. Users following whichever doc they read first ended up with redundant work or wasted `pnpm install` invocations. The CLI's post-build prompt now consistently points at `learningfoundry preview` for every `DepState`, with `cd dist && pnpm build` mentioned only as the "for a static export to deploy" alternative.
|
|
15
|
+
- `src/learningfoundry/cli.py` — collapsed the three-branch `DepState` prompt into a single message: `Next: learningfoundry preview` (with a `⚠️ Dependencies changed …` line prepended in the `CHANGED` case so the user knows the upcoming `learningfoundry preview` will reinstall).
|
|
16
|
+
- `README.md` — Quick Start step 3 now combines build+preview into one `learningfoundry preview` invocation; the `learningfoundry preview` reference section explicitly notes that it serves the SvelteKit project from source via Vite (not the `pnpm build` static output) and now skips `pnpm install` when nothing has changed.
|
|
17
|
+
|
|
18
|
+
### Performance
|
|
19
|
+
|
|
20
|
+
- **`learningfoundry preview` no longer runs `pnpm install` on every invocation.** It now consults `check_dep_state(output_dir)` and skips the install step entirely when the state is `UNCHANGED` (every declared dep is already present in `node_modules/`). Subsequent `learningfoundry preview` runs after a content edit go straight to `pnpm run dev`, saving 5–30 s per cycle. The install still runs unconditionally on `FIRST_BUILD` and `CHANGED` states.
|
|
21
|
+
- `src/learningfoundry/pipeline.py::run_preview` — imports `DepState` and `check_dep_state`; logs `Dependencies up to date — skipping pnpm install.` when the state is `UNCHANGED`.
|
|
22
|
+
|
|
23
|
+
### Added (tests)
|
|
24
|
+
|
|
25
|
+
- `tests/test_cli.py::TestBuildNextStepsPrompt` — 3 cases asserting the new build prompt wording for `FIRST_BUILD`, `UNCHANGED`, and `CHANGED` states (each must say `Next: learningfoundry preview`; only `CHANGED` mentions the dep-change warning).
|
|
26
|
+
- `tests/test_pipeline.py::TestRunPreviewSkipsInstall` — 3 cases verifying that `run_preview` invokes `pnpm install` on `FIRST_BUILD` and `CHANGED` but not on `UNCHANGED`, while always invoking `pnpm run dev`.
|
|
27
|
+
|
|
10
28
|
## [0.35.0] - 2026-04-29
|
|
11
29
|
|
|
12
30
|
### Fixed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: learningfoundry
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.36.0
|
|
4
4
|
Summary: A curriculum engine that turns a YAML curriculum definition into a deployable SvelteKit learning application.
|
|
5
5
|
Project-URL: Homepage, https://github.com/pointmatic/learningfoundry
|
|
6
6
|
Project-URL: Repository, https://github.com/pointmatic/learningfoundry
|
|
@@ -115,20 +115,17 @@ pip install "learningfoundry[quizazz]"
|
|
|
115
115
|
# OK — curriculum is valid.
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
-
3. **Build
|
|
119
|
-
|
|
120
|
-
```bash
|
|
121
|
-
learningfoundry build
|
|
122
|
-
# Build complete → dist/
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
4. **Preview** locally (builds then starts a dev server):
|
|
118
|
+
3. **Build and preview** locally:
|
|
126
119
|
|
|
127
120
|
```bash
|
|
128
121
|
learningfoundry preview
|
|
129
122
|
# Preview server started at http://localhost:5173
|
|
130
123
|
```
|
|
131
124
|
|
|
125
|
+
`learningfoundry preview` is the canonical "see your work" command — it builds the SvelteKit project, installs Node dependencies on first run (and again whenever they change), and starts a Vite dev server. On subsequent runs it skips the install step automatically.
|
|
126
|
+
|
|
127
|
+
`learningfoundry build` alone is also available if you want to generate the SvelteKit project without serving it (e.g. to inspect output, deploy a static export via `cd dist && pnpm build`, or wire into your own toolchain).
|
|
128
|
+
|
|
132
129
|
---
|
|
133
130
|
|
|
134
131
|
## CLI Reference
|
|
@@ -198,7 +195,9 @@ Options:
|
|
|
198
195
|
--help Show this message and exit.
|
|
199
196
|
```
|
|
200
197
|
|
|
201
|
-
Runs `pnpm install`
|
|
198
|
+
Runs `learningfoundry build`, then `pnpm install` (skipped when every declared dependency is already present in `node_modules/`), then `pnpm run dev` in the generated project directory. Requires `pnpm` on `PATH`.
|
|
199
|
+
|
|
200
|
+
This serves the SvelteKit project from source via Vite's dev server; it does **not** serve the static `pnpm build` output in `dist/build/`. For static deploys, use `cd dist && pnpm build` and host the resulting `dist/build/` directory on any static host.
|
|
202
201
|
|
|
203
202
|
---
|
|
204
203
|
|
|
@@ -86,20 +86,17 @@ pip install "learningfoundry[quizazz]"
|
|
|
86
86
|
# OK — curriculum is valid.
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
-
3. **Build
|
|
90
|
-
|
|
91
|
-
```bash
|
|
92
|
-
learningfoundry build
|
|
93
|
-
# Build complete → dist/
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
4. **Preview** locally (builds then starts a dev server):
|
|
89
|
+
3. **Build and preview** locally:
|
|
97
90
|
|
|
98
91
|
```bash
|
|
99
92
|
learningfoundry preview
|
|
100
93
|
# Preview server started at http://localhost:5173
|
|
101
94
|
```
|
|
102
95
|
|
|
96
|
+
`learningfoundry preview` is the canonical "see your work" command — it builds the SvelteKit project, installs Node dependencies on first run (and again whenever they change), and starts a Vite dev server. On subsequent runs it skips the install step automatically.
|
|
97
|
+
|
|
98
|
+
`learningfoundry build` alone is also available if you want to generate the SvelteKit project without serving it (e.g. to inspect output, deploy a static export via `cd dist && pnpm build`, or wire into your own toolchain).
|
|
99
|
+
|
|
103
100
|
---
|
|
104
101
|
|
|
105
102
|
## CLI Reference
|
|
@@ -169,7 +166,9 @@ Options:
|
|
|
169
166
|
--help Show this message and exit.
|
|
170
167
|
```
|
|
171
168
|
|
|
172
|
-
Runs `pnpm install`
|
|
169
|
+
Runs `learningfoundry build`, then `pnpm install` (skipped when every declared dependency is already present in `node_modules/`), then `pnpm run dev` in the generated project directory. Requires `pnpm` on `PATH`.
|
|
170
|
+
|
|
171
|
+
This serves the SvelteKit project from source via Vite's dev server; it does **not** serve the static `pnpm build` output in `dist/build/`. For static deploys, use `cd dist && pnpm build` and host the resulting `dist/build/` directory on any static host.
|
|
173
172
|
|
|
174
173
|
---
|
|
175
174
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "learningfoundry"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.36.0"
|
|
8
8
|
description = "A curriculum engine that turns a YAML curriculum definition into a deployable SvelteKit learning application."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -113,21 +113,17 @@ def build(
|
|
|
113
113
|
from learningfoundry.generator import DepState, check_dep_state
|
|
114
114
|
|
|
115
115
|
state = check_dep_state(output_dir)
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
click.echo(f"Next: cd {output_dir} && pnpm install && pnpm build")
|
|
119
|
-
click.echo(" (or `pnpm dev` for a live-reloading dev server)")
|
|
120
|
-
elif state is DepState.CHANGED:
|
|
121
|
-
click.echo("")
|
|
116
|
+
click.echo("")
|
|
117
|
+
if state is DepState.CHANGED:
|
|
122
118
|
click.echo(
|
|
123
119
|
"⚠️ Dependencies changed since last install "
|
|
124
|
-
"(new packages in package.json)
|
|
120
|
+
"(new packages in package.json) — `learningfoundry preview` "
|
|
121
|
+
"will reinstall."
|
|
125
122
|
)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
click.echo(" (or `pnpm dev` for a live-reloading dev server)")
|
|
123
|
+
click.echo("Next: learningfoundry preview")
|
|
124
|
+
click.echo(
|
|
125
|
+
f" (or `cd {output_dir} && pnpm build` for a static export to deploy)"
|
|
126
|
+
)
|
|
131
127
|
|
|
132
128
|
|
|
133
129
|
# ---------------------------------------------------------------------------
|
|
@@ -133,8 +133,11 @@ def run_preview(
|
|
|
133
133
|
) -> None:
|
|
134
134
|
"""Build then launch a local preview server.
|
|
135
135
|
|
|
136
|
-
Runs ``run_build()``, then ``pnpm install``
|
|
137
|
-
in the generated project directory.
|
|
136
|
+
Runs ``run_build()``, then ``pnpm install`` (only when needed) and
|
|
137
|
+
``pnpm run dev --port`` in the generated project directory. The install
|
|
138
|
+
step is skipped when ``check_dep_state(output_dir)`` reports
|
|
139
|
+
``DepState.UNCHANGED`` — i.e. every dependency declared in the
|
|
140
|
+
generated ``package.json`` is already present in ``node_modules/``.
|
|
138
141
|
|
|
139
142
|
Args:
|
|
140
143
|
curriculum_path: Path to the curriculum YAML file.
|
|
@@ -150,6 +153,7 @@ def run_preview(
|
|
|
150
153
|
GenerationError: If build or pnpm commands fail.
|
|
151
154
|
"""
|
|
152
155
|
from learningfoundry.exceptions import GenerationError
|
|
156
|
+
from learningfoundry.generator import DepState, check_dep_state
|
|
153
157
|
|
|
154
158
|
run_build(
|
|
155
159
|
curriculum_path,
|
|
@@ -161,17 +165,21 @@ def run_preview(
|
|
|
161
165
|
generator=generator,
|
|
162
166
|
)
|
|
163
167
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
168
|
+
state = check_dep_state(output_dir)
|
|
169
|
+
if state is DepState.UNCHANGED:
|
|
170
|
+
logger.info("Dependencies up to date — skipping pnpm install.")
|
|
171
|
+
else:
|
|
172
|
+
logger.info("Installing Node dependencies in %s", output_dir)
|
|
173
|
+
result = subprocess.run(
|
|
174
|
+
["pnpm", "install"],
|
|
175
|
+
cwd=output_dir,
|
|
176
|
+
capture_output=True,
|
|
177
|
+
text=True,
|
|
174
178
|
)
|
|
179
|
+
if result.returncode != 0:
|
|
180
|
+
raise GenerationError(
|
|
181
|
+
f"`pnpm install` failed in `{output_dir}`:\n{result.stderr}"
|
|
182
|
+
)
|
|
175
183
|
|
|
176
184
|
logger.info("Starting dev server on port %d", port)
|
|
177
185
|
subprocess.run(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/__init__.py
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/d3foundry_stub.py
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/nbfoundry_stub.py
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/protocols.py
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/integrations/quizazz.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/src/learningfoundry/sveltekit_template/src/app.css
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/stores/curriculum.ts
RENAMED
|
File without changes
|
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/lib/utils/markdown.ts
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/routes/+layout.svelte
RENAMED
|
File without changes
|
{learningfoundry-0.35.0 → learningfoundry-0.36.0}/sveltekit_template/src/routes/+page.svelte
RENAMED
|
File without changes
|
|
File without changes
|