Skip to content

Commit 98037e6

Browse files
ci: add npm package keywords (#21)
* ci: add keywords to packages * docs: update add exports readme
1 parent b6ac969 commit 98037e6

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ A collection of [Panda CSS][panda-github] [presets][panda-docs-presets].
1111

1212
## Plugins
1313

14-
| Hook | Preset Link | Description |
15-
|-------------------|-------------------------------------------------------------------------|----------------------------------------------------------------------------------|
16-
| `codegen:prepare` | [panda-plugin-add-exports](packages/panda-plugin-add-exports/README.md) | Export certain local variables, like `tokens` data, during `codegen`. |
14+
| Hook | Preset Link | Description |
15+
|-------------------|-----------------------------------------------------------------------|----------------------------------------------------------------------------------|
16+
| `codegen:prepare` | [panda-plugin-add-export](packages/panda-plugin-add-export/README.md) | Export certain local variables, like `tokens` data, during `codegen`. |
1717
| `codegen:prepare` | [panda-plugin-type-extend](packages/panda-plugin-type-extend/README.md) | Extend generated types for layer and text styles with additional CSS properties. |
1818

1919
---

packages/panda-plugin-add-export/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @amandaguthrie/panda-plugin-add-exports
1+
# @amandaguthrie/panda-plugin-add-export
22

33
A [Panda CSS][panda-github] [plugin][panda-docs-plugins] that allows you to change internal structures, like `tokens` into exports.
44

@@ -54,7 +54,7 @@ In your `panda.config.{ts,js}` file, import the plugin and include it in your pl
5454

5555
```typescript
5656
import { defineConfig } from '@pandacss/dev';
57-
import { addExports } from '@amandaguthrie/panda-plugin-add-exports';
57+
import { addExports } from '@amandaguthrie/panda-plugin-add-export';
5858

5959
export default defineConfig({
6060
// ...
@@ -121,7 +121,7 @@ Plugin configuration
121121

122122
```typescript
123123
import { defineConfig } from '@pandacss/dev';
124-
import addExports from '@amandaguthrie/panda-plugin-add-exports';
124+
import addExports from '@amandaguthrie/panda-plugin-add-export';
125125

126126
export default defineConfig({
127127
// ...

packages/panda-preset-breakpoints/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
1212
"directory": "packages/panda-preset-breakpoints"
1313
},
14+
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
1415
"license": "MIT",
1516
"main": "dist/index.js",
1617
"module": "dist/index.mjs",

packages/panda-preset-color-radix/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
1212
"directory": "packages/panda-preset-color-radix"
1313
},
14+
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
1415
"license": "MIT",
1516
"main": "dist/index.js",
1617
"module": "dist/index.mjs",

packages/panda-preset-font-modernfs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
1212
"directory": "packages/panda-preset-font-modernfs"
1313
},
14+
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
1415
"license": "MIT",
1516
"main": "dist/index.js",
1617
"module": "dist/index.mjs",

0 commit comments

Comments
 (0)