@greenymcgee/tailwind-prettier-config 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +13 -1
package/README.md CHANGED
@@ -5,18 +5,23 @@ My Prettier config for TailwindCSS projects.
5
5
  ## Installation
6
6
 
7
7
  Install the config and its peer dependencies.
8
+
9
+ ### npm
10
+
8
11
  ```bash
9
- # npm
10
12
  npm install -D @greenymcgee/tailwind-prettier-config prettier prettier-plugin-tailwindcss
13
+ ```
11
14
 
12
- # pnpm
15
+ ### pnpm
16
+
17
+ ```bash
13
18
  pnpm add -D @greenymcgee/tailwind-prettier-config prettier prettier-plugin-tailwindcss
14
19
  ```
15
20
 
16
21
  ## Usage
17
22
 
18
23
  ```javascript
19
- // .prettierrc.json
24
+ // prettier.config.mjs
20
25
  import greenymcgeeConfig from '@greenymcgee/tailwind-prettier-config'
21
26
 
22
27
  export default {
package/package.json CHANGED
@@ -1,6 +1,18 @@
1
1
  {
2
2
  "name": "@greenymcgee/tailwind-prettier-config",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/greenymcgee/tacklebox.git",
7
+ "directory": "packages/tailwind-prettier-config"
8
+ },
9
+ "homepage": "https://github.com/greenymcgee/tacklebox/tree/main/packages/tailwind-prettier-config",
10
+ "bugs": {
11
+ "url": "https://github.com/greenymcgee/tacklebox/issues"
12
+ },
13
+ "files": [
14
+ "index.mjs"
15
+ ],
4
16
  "type": "module",
5
17
  "main": "./index.mjs",
6
18
  "exports": {