Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
shuji-koike committed Jan 26, 2024
1 parent 96a04a9 commit 41d0fc9
Show file tree
Hide file tree
Showing 9 changed files with 9,729 additions and 15,001 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
id: cache_node_modules
with:
path: "**/node_modules"
key: node_modules-${{ hashFiles('**/package.json', 'yarn.lock') }}
key: node_modules-${{ hashFiles('**/package.json', 'pnpm-lock.yaml') }}
- run: yarn install --frozen-lockfile
if: steps.cache_node_modules.outputs.cache-hit != 'true'
- run: yarn prettier -c .
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ build
static/wasm_exec.js
static/*.json
**/icons.json
pnpm-lock.yaml
12 changes: 2 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,8 @@
"request": "launch",
"name": "yarn start",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "yarn",
"runtimeArgs": ["start"]
},
{
"type": "node",
"request": "launch",
"name": "yarn storybook",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "yarn",
"runtimeArgs": ["storybook"]
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "start"]
}
]
}
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"lint": "eslint --cache --fix .; prettier --write --loglevel warn .;tsc --noEmit",
"storybook": "start-storybook -p 6006"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@firebase/app-compat": "^0.2.26",
"@shuji-koike/boilerplate": "^1.24.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsx build.ts"
"build": "npx tsx build.ts"
},
"dependencies": {
"axios": "^1.6.7",
Expand All @@ -18,6 +18,7 @@
"devDependencies": {
"esbuild": "^0.19.12",
"firebase-functions-test": "^3.1.1",
"jest": "^29.7.0"
"jest": "^29.7.0",
"tsx": "^4.7.0"
}
}
Loading

0 comments on commit 41d0fc9

Please sign in to comment.