Skip to content

Commit ef9d818

Browse files
committed
Fixed cross-env and changed readme
1 parent d81457c commit ef9d818

File tree

3 files changed

+132
-9
lines changed

3 files changed

+132
-9
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ npm run exercise 01
1515
npm run solution 01
1616
```
1717

18-
## Video Walkthrough
19-
20-
I walked through the first few exercises on [VSCode's live stream](https://www.youtube.com/watch?v=p6dO9u0M7MQ)! The plan for these exercises is to develop them into a full workshop, and then bundle them into the full video course - [Total TypeScript](https://totaltypescript.com).
21-
2218
## How to take the course
2319

2420
You'll notice that the course is split into exercises. Each exercise is split into a `*.problem.ts` and a `*.solution.ts`.

package-lock.json

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

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"devDependencies": {
88
"chokidar": "^3.5.3",
99
"cross-fetch": "^3.1.5",
10-
"typescript": "^5.0.3",
10+
"fast-glob": "^3.2.12",
1111
"jsdom": "^21.1.1",
1212
"prettier": "^2.8.7",
13+
"typescript": "^5.0.3",
1314
"vite-tsconfig-paths": "^4.0.7",
14-
"vitest": "^0.29.8",
15-
"fast-glob": "^3.2.12"
15+
"vitest": "^0.29.8"
1616
},
1717
"scripts": {
1818
"exercise": "node scripts/exercise.js",
1919
"e": "npm run exercise",
20-
"solution": "SOLUTION=true node scripts/exercise.js",
20+
"solution": "cross-env SOLUTION=true node scripts/exercise.js",
2121
"s": "npm run solution",
2222
"ci": "(cd scripts/tests && npx vitest run)",
2323
"update-snapshots": "(cd scripts/tests && npx vitest run -u)",
@@ -59,9 +59,10 @@
5959
"@types/express": "^4.17.13",
6060
"@types/react": "^18.0.28",
6161
"@types/react-dom": "^18.0.11",
62+
"cross-env": "^7.0.3",
6263
"express": "^4.18.1",
6364
"react": "^18.2.0",
6465
"react-dom": "^18.2.0",
6566
"zod": "^3.17.10"
6667
}
67-
}
68+
}

0 commit comments

Comments
 (0)