Skip to content

Commit 5662d0b

Browse files
authored
studio inline express (#838)
- **cli: import express package** - **replace express build embed w/ imported expressApp** - **bump: version 0.1.11-1** - **linting fixes** - **bump: version 0.1.11-2** - **use polyfill for auth lookup requests...** - **add express package to testproject transformation** - **rm ignored file** - **improve error case handling** - **refactor nano db access for better init control** - **soften the failure on unset env vars...** - **add courseIDs to specify postProcess targets** - **make design-docs availabe in dist** - **lockfile** - **bump: version 0.1.11-3** - **fix version string** - **bump: version 0.1.11-4** - **update nano...** - **bump: version 0.1.11-5** - **relative path lookup for `assets`** - **bump: version 0.1.11-6** - **rm baseconfig from scaffolded crs vite.cfg...** - **dedup skuilder packages...** - **bump: version 0.1.11-7** - **pass decorated courseDB label** - **bump: version 0.1.11-8** - **bump: version 0.1.11-9** - **improve logging of failed db lookups** - **bump: version 0.1.11-10** - **add some logging around db lookups** - **safety re: urls ending with or without `/`** - **improve logging coursedb lookups** - **bump: version 0.1.11-11** - **use `error` (no unused)** - **bump: version 0.1.11-12** - **more logging around deduplication** - **catch & log dedup errors** - **bump: version 0.1.11-13** - **rm duplicate logging** - **catch & log design-doc insertion errors** - **bump: version 0.1.11-14** - **logging and handling of throws** - **bump: version 0.1.11-15**
2 parents cfa43c7 + c60dba6 commit 5662d0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+645
-573
lines changed

.github/workflows/ci-pkg-common-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vue-skuilder/.github/workflows/ci-pkg-common-ui.yml
2-
name: CI - Common UI Package
2+
name: ci-pkg-common-ui
33

44
on:
55
push:

.github/workflows/courses-test.yml renamed to .github/workflows/ci-pkg-courseware.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
# .github/workflows/courses-test.yml
2-
name: CourseWare Package Tests
1+
# .github/workflows/ci-pkg-courseware.yml
2+
name: ci-pkg-courseware
33

44
on:
55
push:
66
paths:
77
- 'packages/courseware/**'
8-
- '.github/workflows/courses-test.yml'
8+
- '.github/workflows/ci-pkg-courseware.yml'
99
pull_request:
1010
paths:
1111
- 'packages/courseware/**'
12-
- '.github/workflows/courses-test.yml'
12+
- 'packages/common/**'
13+
- 'packages/db/**'
14+
- 'packages/common-ui/**'
15+
- '.github/workflows/ci-pkg-courseware.yml'
1316

1417
jobs:
1518
test:
@@ -25,7 +28,7 @@ jobs:
2528
cache: 'yarn'
2629

2730
- name: Install dependencies
28-
run: yarn install --frozen-lockfile
31+
run: yarn install --immutable
2932

3033
- name: Build @vue-skuilder/common
3134
run: |

.github/workflows/build-express.yml renamed to .github/workflows/ci-pkg-express.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: build-express
1+
name: ci-pkg-express
22
on:
33
pull_request:
44
paths:
55
- 'packages/express/**'
6-
- 'packages/common/**' # Added common since it's a dependency
6+
- 'packages/common/**'
7+
- 'packages/db/**'
78
- '.github/workflows/build-express.yml'
89
- 'package.json'
910
- 'yarn.lock'

.github/workflows/ci-mcp-sanity.yml renamed to .github/workflows/ci-pkg-mcp-sanity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ci-mcp-sanity
1+
name: ci-pkg-mcp-sanity
22
permissions:
33
contents: read
44
on:

.github/workflows/build-platform-ui.yml renamed to .github/workflows/ci-pkg-platform-ui.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build-platform-ui
1+
name: ci-pkg-platform-ui
22
on:
33
pull_request:
44
paths:
@@ -7,6 +7,7 @@ on:
77
- 'packages/db/**'
88
- 'packages/common-ui/**'
99
- 'packages/courseware/**'
10+
- 'packages/edit-ui/**'
1011
- '.github/workflows/build-platform-ui.yml'
1112
jobs:
1213
build-platform-ui-spa:

0 commit comments

Comments
 (0)