-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updated to latest tailwind plugin structure
BREAKING CHANGE: May require change to your 1tailwind.config.js/ts`
- Loading branch information
1 parent
be7fe46
commit d54d4a6
Showing
14 changed files
with
1,920 additions
and
882 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"] | ||
"extends": [ | ||
"config:base", | ||
"group:allNonMajor", | ||
":semanticCommitTypeAll(chore)" | ||
], | ||
"meteor": { | ||
"enabled": false | ||
}, | ||
"rangeStrategy": "bump", | ||
"npm": { | ||
"commitMessageTopic": "{{prettyDepType}} {{depName}}" | ||
}, | ||
"packageRules": [ | ||
{ | ||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"], | ||
"automerge": true, | ||
"automergeSchedule": ["after 1am and before 2am"], | ||
"schedule": ["after 2am and before 3am"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/swcrc", | ||
"module": { | ||
"type": "commonjs", | ||
|
||
// These are defaults. | ||
"strict": false, | ||
"strictMode": true, | ||
"lazy": false, | ||
"noInterop": false | ||
}, | ||
"jsc": { | ||
"parser": { | ||
"syntax": "typescript", | ||
"tsx": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
{ | ||
"name": "tw-plugin-demo", | ||
"private": true, | ||
"packageManager": "^pnpm@8.1.0", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"version": "0.0.0", | ||
"private": true, | ||
"packageManager": "pnpm@8.6.3", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vue-tsc --noEmit && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"@vueuse/core": "^9.13.0", | ||
"vue": "^3.2.47" | ||
"@vueuse/core": "^10.2.1", | ||
"vue": "^3.3.4" | ||
}, | ||
"devDependencies": { | ||
"@jcamp/tailwindcss-plugin-icons": "^0.5.0", | ||
"@vitejs/plugin-vue": "^4.1.0", | ||
"@iconify-json/carbon": "1.1.18", | ||
"@iconify-json/twemoji": "1.1.11", | ||
"@jcamp/tailwindcss-plugin-icons": "^0.6.0", | ||
"@vitejs/plugin-vue": "^4.2.3", | ||
"autoprefixer": "^10.4.14", | ||
"postcss": "^8.4.21", | ||
"tailwindcss": "^3.3.1", | ||
"typescript": "^5.0.3", | ||
"vite": "^4.2.1", | ||
"vue-tsc": "^1.2.0" | ||
"postcss": "^8.4.24", | ||
"tailwindcss": "^3.3.2", | ||
"typescript": "^5.1.6", | ||
"vite": "^4.3.9", | ||
"vue-tsc": "^1.8.3" | ||
} | ||
} |
Oops, something went wrong.