promptslide 0.3.5 → 0.3.6
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/commands/publish.mjs +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.6](https://github.com/prompticeu/promptslide/compare/promptslide-v0.3.5...promptslide-v0.3.6) (2026-03-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* show organization hint in publish command ([#73](https://github.com/prompticeu/promptslide/issues/73)) ([3002f25](https://github.com/prompticeu/promptslide/commit/3002f255f386a5bf646381808324ebda96c57707))
|
|
9
|
+
|
|
3
10
|
## [0.3.5](https://github.com/prompticeu/promptslide/compare/promptslide-v0.3.4...promptslide-v0.3.5) (2026-03-08)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/src/commands/publish.mjs
CHANGED
|
@@ -393,6 +393,11 @@ export async function publish(args) {
|
|
|
393
393
|
|
|
394
394
|
const auth = requireAuth()
|
|
395
395
|
|
|
396
|
+
if (auth.organizationName) {
|
|
397
|
+
console.log(` ${dim("Organization:")} ${bold(auth.organizationName)} ${dim(`· switch with promptslide org`)}`)
|
|
398
|
+
console.log()
|
|
399
|
+
}
|
|
400
|
+
|
|
396
401
|
// Determine file to publish
|
|
397
402
|
let typeOverride = null
|
|
398
403
|
const typeIdx = args.indexOf("--type")
|