pulse-framework-cli 0.4.1 → 0.4.2
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.
- package/package.json +1 -1
- package/templates/.cursorrules +42 -0
package/package.json
CHANGED
package/templates/.cursorrules
CHANGED
|
@@ -154,6 +154,48 @@
|
|
|
154
154
|
# 4. ESTIMATE the effort:
|
|
155
155
|
# "Estimated effort: [X] minutes. Should I start?"
|
|
156
156
|
|
|
157
|
+
# ┌─────────────────────────────────────────────────────────────────────────────┐
|
|
158
|
+
# │ 📦 PULSE PUBLISHING PROTOCOL │
|
|
159
|
+
# └─────────────────────────────────────────────────────────────────────────────┘
|
|
160
|
+
|
|
161
|
+
# Pulse Framework consists of multiple packages that need to be published separately:
|
|
162
|
+
#
|
|
163
|
+
# PACKAGE OVERVIEW:
|
|
164
|
+
# ┌────────────────────┬──────────────┬─────────────────────────┐
|
|
165
|
+
# │ Package │ Registry │ Name │
|
|
166
|
+
# ├────────────────────┼──────────────┼─────────────────────────┤
|
|
167
|
+
# │ pulse-cli │ npm │ pulse-framework-cli │
|
|
168
|
+
# │ pulse-vscode │ OpenVSX │ pulse-framework │
|
|
169
|
+
# │ pulse-mcp │ npm │ (if published) │
|
|
170
|
+
# └────────────────────┴──────────────┴─────────────────────────┘
|
|
171
|
+
#
|
|
172
|
+
# WHEN TO PUBLISH:
|
|
173
|
+
# - CLI changes (templates, commands, guardrails) → Publish to npm
|
|
174
|
+
# - Extension changes (UI, commands) → Publish to OpenVSX
|
|
175
|
+
# - BOTH must be updated if they depend on each other
|
|
176
|
+
#
|
|
177
|
+
# PUBLISHING STEPS:
|
|
178
|
+
#
|
|
179
|
+
# 1. CLI (npm):
|
|
180
|
+
# cd packages/pulse-cli
|
|
181
|
+
# npm version patch # or minor/major
|
|
182
|
+
# npm run build
|
|
183
|
+
# npm publish --access public
|
|
184
|
+
#
|
|
185
|
+
# 2. Extension (OpenVSX):
|
|
186
|
+
# cd packages/pulse-vscode
|
|
187
|
+
# npm version patch # or minor/major
|
|
188
|
+
# npm run build
|
|
189
|
+
# npx @vscode/vsce package
|
|
190
|
+
# npx ovsx publish *.vsix -p <OPENVSX_TOKEN>
|
|
191
|
+
#
|
|
192
|
+
# IMPORTANT:
|
|
193
|
+
# - The Extension calls `npx pulse-framework-cli` (npm package)
|
|
194
|
+
# - CLI updates are automatically available to Extension users
|
|
195
|
+
# - Extension updates require manual re-publishing
|
|
196
|
+
# - Always test locally before publishing
|
|
197
|
+
# - Keep versions in sync when making related changes
|
|
198
|
+
|
|
157
199
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
158
200
|
# END OF RULES - You are now ready. Follow these rules.
|
|
159
201
|
# ═══════════════════════════════════════════════════════════════════════════════
|