Skip to content

chore: renames lib/typescript to lib/javascript #692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check_fullstack_demo_ts_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ "main" ]
paths:
- ".github/workflows/check_fullstack_demo_ts_pr.yaml"
- "lib/typescript/fullstack_demo/**"
- "lib/javascript/fullstack_demo/**"

jobs:
build:
Expand All @@ -23,7 +23,7 @@ jobs:
node-version: '20.x'

- name: Build Fullstack Demo with Node.js
working-directory: ./lib/typescript/fullstack_demo
working-directory: ./lib/javascript/fullstack_demo
env:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_lesson_02_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: '20.x'

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: npm ci

- name: Build Lesson 02 with Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_lesson_03_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '20.x'

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: npm ci

- name: Build Lesson 03 with Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_lesson_05_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '20.x'

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: npm ci

- name: Build Lesson 06 with Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_lesson_06_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '20.x'

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: npm ci

- name: Build Lesson 06 with Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_lesson_07_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '20.x'

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: npm ci

- name: Build Lesson 07 with Node.js
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: ./gradlew check

- name: Build Shared Lib with Node.js
working-directory: ./lib/typescript/codedifferently-instructional
working-directory: ./lib/javascript/codedifferently-instructional
run: |
npm ci
npm run test
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
run: ./gradlew check

- name: Build Fullstack Demo with Node.js
working-directory: ./lib/typescript/fullstack_demo
working-directory: ./lib/javascript/fullstack_demo
env:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion capstone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ To ensure the timely completion of your project, you will need to complete the f

Here are some links to tools and templates that can help you work together effectively.

* [TODO App (fullstack NextJS app in TypeScript)](/lib/typescript/fullstack_demo)
* [TODO App (fullstack NextJS app in TypeScript)](/lib/javascript/fullstack_demo)
* [TODO App (fullstack React + Java Spring app in TypeScript/Java)](/lib/java/fullstack_demo)
* [v0 (chatbot for generating UI and web applications)](https://v0.dev)
* [A Short Guide to Effective Daily Standups (Nave)](https://getnave.com/blog/short-guide-daily-standups/)
Expand Down
2 changes: 1 addition & 1 deletion lesson_02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For this assignment, you will complete a quiz by modifying a TypeScript applicat
3. Navigate to the [quiz][lesson-2-quiz-dir] directory and install the required dependencies.
```bash
cd lesson_02/quiz
npm install --prefix ../../lib/typescript/codedifferently-instructional
npm install --prefix ../../lib/javascript/codedifferently-instructional
npm install
npm start
```
Expand Down
8 changes: 4 additions & 4 deletions lesson_02/quiz/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lesson_02/quiz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"codedifferently-instructional": "file:../../lib/typescript/codedifferently-instructional"
"codedifferently-instructional": "file:../../lib/javascript/codedifferently-instructional"
}
}
2 changes: 1 addition & 1 deletion lesson_03/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Now's your chance to quiz the instructor! In this assignment, you will modify th
1. Navigate to the [quiz][quiz-folder] directory and install the required dependencies.
```bash
cd lesson_03/quiz
npm install --prefix ../../lib/typescript/codedifferently-instructional
npm install --prefix ../../lib/javascript/codedifferently-instructional
npm install
npm start
```
Expand Down
8 changes: 4 additions & 4 deletions lesson_03/quiz/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lesson_03/quiz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"@nestjs/common": "^10.4.15",
"@nestjs/core": "^10.4.15",
"codedifferently-instructional": "file:../../lib/typescript/codedifferently-instructional",
"codedifferently-instructional": "file:../../lib/javascript/codedifferently-instructional",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
}
Expand Down
8 changes: 4 additions & 4 deletions lesson_05/quiz/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lesson_05/quiz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"typescript-eslint": "^8.7.0"
},
"dependencies": {
"codedifferently-instructional": "file:../../lib/typescript/codedifferently-instructional"
"codedifferently-instructional": "file:../../lib/javascript/codedifferently-instructional"
}
}
Loading