Skip to content

Commit c0f6a2c

Browse files
authored
Merge pull request #687 from thinc-org/beta
Deploy Production 9/6/2567
2 parents b30ec9b + 64d461e commit c0f6a2c

File tree

12 files changed

+82
-5
lines changed

12 files changed

+82
-5
lines changed

.changeset/cold-fishes-greet.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"reg-scraper": patch
3+
"admin-api": patch
4+
"api": patch
5+
"web": patch
6+
---
7+
8+
fix: build and lint error

.changeset/pre.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"mode": "exit",
3+
"tag": "beta",
4+
"initialVersions": {
5+
"admin-api": "1.3.0",
6+
"admin-web": "1.3.0",
7+
"api": "1.9.0",
8+
"reg-scraper": "1.5.0",
9+
"web": "1.10.0",
10+
"web-e2e": "0.3.0",
11+
"@cgr/codegen": "1.5.0",
12+
"@cgr/course-utils": "1.3.0",
13+
"@cgr/project-config": "1.3.0",
14+
"@cgr/schema": "1.5.0"
15+
},
16+
"changesets": [
17+
"cold-fishes-greet"
18+
]
19+
}

apps/admin-api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# admin-api
22

3+
## 1.3.1-beta.0
4+
5+
### Patch Changes
6+
7+
- 90eecbe: fix: build and lint error
8+
39
## 1.3.0
410

511
### Minor Changes

apps/admin-api/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "admin-api",
3-
"version": "1.3.0",
3+
"version": "1.3.1-beta.0",
44
"description": "",
55
"author": "",
66
"private": true,
@@ -41,6 +41,7 @@
4141
"@types/express": "^4.17.21",
4242
"@types/node": "^20.11.25",
4343
"eslint": "8.57.0",
44+
"rimraf": "^5.0.7",
4445
"ts-morph": "^21.0.1",
4546
"typescript": "~5.4.2"
4647
}

apps/api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# api
22

3+
## 1.9.1-beta.0
4+
5+
### Patch Changes
6+
7+
- 90eecbe: fix: build and lint error
8+
39
## 1.9.0
410

511
### Minor Changes

apps/api/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api",
3-
"version": "1.9.0",
3+
"version": "1.9.1-beta.0",
44
"private": true,
55
"scripts": {
66
"dev": "nest start --watch",
@@ -17,6 +17,7 @@
1717
"@types/node": "20.11.25",
1818
"@types/passport-jwt": "^4.0.1",
1919
"eslint": "8.57.0",
20+
"rimraf": "^5.0.7",
2021
"ts-morph": "^21.0.1",
2122
"typescript": "~5.4.2"
2223
},

apps/reg-scraper/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# reg-scraper
22

3+
## 1.5.1-beta.0
4+
5+
### Patch Changes
6+
7+
- 90eecbe: fix: build and lint error
8+
39
## 1.5.0
410

511
### Minor Changes

apps/reg-scraper/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reg-scraper",
3-
"version": "1.5.0",
3+
"version": "1.5.1-beta.0",
44
"private": true,
55
"scripts": {
66
"dev": "nest start --watch",
@@ -15,6 +15,7 @@
1515
"@types/node": "20.11.25",
1616
"@types/tough-cookie": "4.0.5",
1717
"eslint": "8.57.0",
18+
"rimraf": "^5.0.7",
1819
"typescript": "~5.4.2"
1920
},
2021
"dependencies": {

apps/web/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# web
22

3+
## 1.10.1-beta.0
4+
5+
### Patch Changes
6+
7+
- 90eecbe: fix: build and lint error
8+
39
## 1.10.0
410

511
### Minor Changes

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "1.10.0",
3+
"version": "1.10.1-beta.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev -p 4200",

apps/web/src/common/components/TopBar/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import { useRouter } from 'next/router'
22

33
import { AnnouncementBar } from './components/AnnouncementBar'
4-
import { getAnnouncement1, getNotRegChulaWarning, term67Issue } from './components/AnnouncementBar/announcements'
4+
import {
5+
getAnnouncement1,
6+
getNotRegChulaWarning,
7+
term67Issue,
8+
} from './components/AnnouncementBar/announcements'
59
import { ConfigBar } from './components/ConfigBar'
610
import { ConfigBarLayout } from './components/ConfigBar/styled'
711
import { NavBar } from './components/NavBar'

pnpm-lock.yaml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)