Skip to content

Commit 7cf7a11

Browse files
committed
fix: building
1 parent 2ef6c0a commit 7cf7a11

File tree

12 files changed

+629
-209
lines changed

12 files changed

+629
-209
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@ node_modules
1818

1919
yarn-error.log
2020
.vercel
21+
22+
# Static Deps
23+
static/motion-canvas

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
6-
"dev": "vite dev --host",
7-
"dev:open": "vite dev --host --open",
8-
"build": "pnpm run -r --filter ./projects/* build && vite build",
6+
"dev": "concurrently \"pnpm run build:projects\" \"vite dev --host\"",
7+
"dev:open": "concurrently \"pnpm run build:projects\" \"vite dev --host --open\"",
8+
"build": "pnpm run build:projects && vite build",
99
"preview": "vite preview",
1010
"lint": "prettier --plugin-search-dir . --check . && eslint .",
1111
"format": "prettier --plugin-search-dir . --write . && eslint . --fix",
12-
"tunnel": "cloudflared tunnel run --url http://localhost:5174"
12+
"tunnel": "cloudflared tunnel run --url http://localhost:5174",
13+
"build:projects": "pnpm run -r --filter ./projects/* build"
1314
},
1415
"devDependencies": {
1516
"@iconify-json/material-symbols": "^1.1.29",
1617
"@iconify-json/mdi": "^1.1.47",
1718
"@iconify-json/vscode-icons": "^1.1.22",
1819
"@iconify/tailwind": "^0.1.1",
1920
"@koding-dev/motion-canvas": "workspace:^0.0.0",
20-
"@motion-canvas/player": "^3.2.0",
2121
"@sveltejs/adapter-vercel": "^2.1.0",
2222
"@sveltejs/kit": "^1.6.0",
2323
"@tailwindcss/line-clamp": "^0.4.2",
@@ -27,6 +27,7 @@
2727
"@typescript-eslint/eslint-plugin": "^5.27.0",
2828
"@typescript-eslint/parser": "^5.27.0",
2929
"autoprefixer": "^10.4.7",
30+
"concurrently": "^7.6.0",
3031
"eslint": "^8.16.0",
3132
"eslint-config-prettier": "^8.3.0",
3233
"eslint-plugin-prettier": "^4.2.1",
@@ -41,6 +42,7 @@
4142
"prettier-plugin-tailwindcss": "^0.2.1",
4243
"rehype-autolink-headings": "^6.1.1",
4344
"rehype-slug": "^5.1.0",
45+
"sass": "^1.59.2",
4446
"svelte": "^3.44.0",
4547
"svelte-check": "^2.7.1",
4648
"svelte-preprocess": "^4.10.7",
@@ -53,6 +55,7 @@
5355
"type": "module",
5456
"dependencies": {
5557
"@fontsource/poppins": "^4.5.10",
58+
"@motion-canvas/core": "^3.2.0",
5659
"@notionhq/client": "^2.2.2",
5760
"clsx": "^1.2.1",
5861
"nprogress": "^0.2.0"

0 commit comments

Comments
 (0)