@schandlergarcia/sf-web-components 1.9.29 → 1.9.30

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 +22 -0
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -92,10 +92,32 @@ npm run build:types
92
92
 
93
93
  ## Publishing
94
94
 
95
+ This package publishes to the **public npm registry** at https://registry.npmjs.org.
96
+
97
+ ### Prerequisites
98
+ - Be logged in to npm: `npm login`
99
+ - Have publish permissions for the `@schandlergarcia` scope
100
+
101
+ ### Publish a New Version
102
+
95
103
  ```bash
104
+ # Bump version (patch, minor, or major)
105
+ npm version patch # 1.9.29 → 1.9.30
106
+ npm version minor # 1.9.29 → 1.10.0
107
+ npm version major # 1.9.29 → 2.0.0
108
+
109
+ # Or manually edit package.json version field
110
+
111
+ # Build and publish
112
+ npm run build
96
113
  npm publish
97
114
  ```
98
115
 
116
+ The package is published as **public** and can be installed by anyone:
117
+ ```bash
118
+ npm install @schandlergarcia/sf-web-components
119
+ ```
120
+
99
121
 
100
122
  ## 🤖 AI Agent Skills
101
123
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schandlergarcia/sf-web-components",
3
- "version": "1.9.29",
3
+ "version": "1.9.30",
4
4
  "description": "Reusable Salesforce web components library with Tailwind CSS v4 and shadcn/ui",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -34,7 +34,6 @@
34
34
  "build": "vite build && cp -r src/styles dist/",
35
35
  "build:types": "tsc --emitDeclarationOnly",
36
36
  "prepublishOnly": "npm run build",
37
- "postinstall": "node scripts/postinstall.mjs",
38
37
  "reset:command-center": "bash scripts/reset-command-center.sh",
39
38
  "validate:dashboard": "bash scripts/validate-dashboard.sh",
40
39
  "graphql:schema": "node scripts/get-graphql-schema.mjs"