Skip to content

Commit 2674cc5

Browse files
committed
chor: fic
1 parent df7c124 commit 2674cc5

File tree

10 files changed

+429
-19
lines changed

10 files changed

+429
-19
lines changed

.relase-it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"tagName": "v${version}"
1515
},
1616
"npm" : {
17-
"publish" : false
17+
"publish" : true
1818
},
1919
"hooks": {
2020
"after:bump": "npx auto-changelog -p"

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,13 @@ In this example, we have customized the textShadowSteps object with only four st
230230
231231
Contributions to this plugin are welcome! If you encounter any issues, have feature requests, or want to improve the plugin, feel free to create a pull request or submit an issue on the GitHub repository.
232232
233+
### Contributors
234+
<a href="https://github.com/DesignByCode/tailwindcss-text-shadow/graphs/contributors">
235+
<img src="https://contrib.rocks/image?repo=DesignByCode/tailwindcss-text-shadow" />
236+
</a>
237+
238+
239+
233240
## License
234241
235242
This project is licensed under the [MIT](LICENCE) License - see the [LICENSE](LICENCE) file for details.

dist/index.cjs

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

dist/index.umd.cjs

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

dist/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

dist/utils/generateShadows.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default function generateShadows(steps?: number): string;

package.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"designbycode"
2424
],
2525
"type": "module",
26+
"types": "dist",
2627
"main": "./dist/index.umd.cjs",
2728
"exports": {
2829
".": {
@@ -72,20 +73,21 @@
7273
"tailwindcss": ">=3.0.0 || >=3.0.0-alpha.1"
7374
},
7475
"devDependencies": {
75-
"typescript": "^5.0.2",
76-
"vite": "^4.4.5",
77-
"prettier": "^2.8.8",
78-
"husky": "^8.0.3",
79-
"tailwindcss": "^3.3.3",
80-
"autoprefixer": "^10.4.14",
81-
"postcss": "^8.4.27",
82-
"terser": "^5.19.2",
83-
"@types/node": "^20.4.8",
76+
"@release-it/bumper": "^5.1.0",
77+
"@release-it/keep-a-changelog": "^4.0.0",
8478
"@semantic-release/git": "^10.0.1",
8579
"@semantic-release/github": "^9.0.4",
86-
"semantic-release": "^21.0.7",
80+
"@types/node": "^20.4.8",
81+
"autoprefixer": "^10.4.14",
82+
"husky": "^8.0.3",
83+
"postcss": "^8.4.27",
84+
"prettier": "^2.8.8",
8785
"release-it": "^16.1.4",
88-
"@release-it/bumper": "^5.1.0",
89-
"@release-it/keep-a-changelog": "^4.0.0"
86+
"semantic-release": "^21.0.7",
87+
"tailwindcss": "^3.3.3",
88+
"terser": "^5.19.2",
89+
"typescript": "^5.0.2",
90+
"vite": "^4.4.5",
91+
"vite-plugin-dts": "^3.5.1"
9092
}
9193
}

0 commit comments

Comments
 (0)