Skip to content

Commit

Permalink
ci: add npm package keywords (#21)
Browse files Browse the repository at this point in the history
* ci: add keywords to packages

* docs: update add exports readme
  • Loading branch information
amandaguthrie authored Jul 30, 2024
1 parent b6ac969 commit 98037e6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ A collection of [Panda CSS][panda-github] [presets][panda-docs-presets].

## Plugins

| Hook | Preset Link | Description |
|-------------------|-------------------------------------------------------------------------|----------------------------------------------------------------------------------|
| `codegen:prepare` | [panda-plugin-add-exports](packages/panda-plugin-add-exports/README.md) | Export certain local variables, like `tokens` data, during `codegen`. |
| Hook | Preset Link | Description |
|-------------------|-----------------------------------------------------------------------|----------------------------------------------------------------------------------|
| `codegen:prepare` | [panda-plugin-add-export](packages/panda-plugin-add-export/README.md) | Export certain local variables, like `tokens` data, during `codegen`. |
| `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. |

---
Expand Down
6 changes: 3 additions & 3 deletions packages/panda-plugin-add-export/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @amandaguthrie/panda-plugin-add-exports
# @amandaguthrie/panda-plugin-add-export

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

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

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

export default defineConfig({
// ...
Expand Down Expand Up @@ -121,7 +121,7 @@ Plugin configuration

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

export default defineConfig({
// ...
Expand Down
1 change: 1 addition & 0 deletions packages/panda-preset-breakpoints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-breakpoints"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
1 change: 1 addition & 0 deletions packages/panda-preset-color-radix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-color-radix"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
1 change: 1 addition & 0 deletions packages/panda-preset-font-modernfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"url": "https://github.com/amandaguthrie/panda-css-presets.git",
"directory": "packages/panda-preset-font-modernfs"
},
"keywords": ["pandacss", "panda-css", "panda-preset", "pandacss-preset", "panda-css-preset", "radix", "radix-colors"],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit 98037e6

Please sign in to comment.