Skip to content

Commit

Permalink
Merge pull request #25 from digital-go-jp/develop
Browse files Browse the repository at this point in the history
v0.1.5
  • Loading branch information
takumi-hatta-dig authored Dec 25, 2023
2 parents 13e6adc + 55d7f3e commit c40471d
Show file tree
Hide file tree
Showing 10 changed files with 848 additions and 475 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.13.0
registry-url: 'https://registry.npmjs.org'
node-version: 18
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run build
- run: npm publish --access=public
Expand Down
20 changes: 18 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@
"editor.quickSuggestions": {
"strings": true
},
"editor.defaultFormatter": "biomejs.biome",
"editor.unicodeHighlight.invisibleCharacters": true,
"editor.formatOnSave": true,
"editor.unicodeHighlight.invisibleCharacters": true
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $ npm install @digital-go-jp/tailwind-theme-plugin

## Figma(デザインシステム)とのバージョン対応表

| Figmaのバージョン | npmのバージョン |
| ----------------- | --------------- |
| 1.x.x | 0.1.2 |
| 1.4.0 | 0.0.22 |
| Figma のバージョン | npm のバージョン |
| ------------------ | ---------------- |
| 1.4.1 | 0.1.5 |
| 1.4.0 | 0.0.22 |
3 changes: 0 additions & 3 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
"trailingComma": "all",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"indentWidth": 2,
"indentStyle": "space",
"lineWidth": 100,
"quoteProperties": "asNeeded"
}
},
Expand Down
34 changes: 17 additions & 17 deletions examples/package-lock.json

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

10 changes: 5 additions & 5 deletions examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.6",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.6"
"vite": "^5.0.10"
}
}
Loading

0 comments on commit c40471d

Please sign in to comment.