Skip to content

Commit

Permalink
Use yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
taysea committed Feb 14, 2024
1 parent d3af25f commit ed8a2f7
Show file tree
Hide file tree
Showing 4 changed files with 895 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sync-tokens-to-figma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
uses: actions/checkout@v3

- name: Install dependencies
run: npm install
run: yarn install
working-directory: design-tokens

- name: Sync tokens to Figma file
run: npm run sync-tokens-to-figma
run: yarn sync-tokens-to-figma
working-directory: design-tokens
env:
FILE_KEY: ${{ secrets.GH_ACTION_FIGMA_FILE_KEY }}
Expand Down
1 change: 1 addition & 0 deletions design-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "design-tokens",
"version": "0.1.0",
"type": "module",
"scripts": {
"prettier:check": "prettier --check src/",
Expand Down
2 changes: 1 addition & 1 deletion design-tokens/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"module": "Node16",
"target": "es2015",
"sourceMap": true,
"moduleResolution": "node16",
"moduleResolution": "Node16",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
Expand Down
Loading

0 comments on commit ed8a2f7

Please sign in to comment.