@anytio/pspm 0.4.0 → 0.4.1
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 +10 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to the PSPM CLI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.1] - 2026-02-09
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated all outdated dependencies
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Store SKILL.md content in database and display on package detail page
|
|
17
|
+
|
|
8
18
|
## [0.4.0] - 2026-02-09
|
|
9
19
|
|
|
10
20
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -3758,6 +3758,15 @@ async function publishCommand(options) {
|
|
|
3758
3758
|
console.error(`Error: ${validation.error}`);
|
|
3759
3759
|
process.exit(1);
|
|
3760
3760
|
}
|
|
3761
|
+
const skillMdPath = join(process.cwd(), "SKILL.md");
|
|
3762
|
+
try {
|
|
3763
|
+
await stat(skillMdPath);
|
|
3764
|
+
} catch {
|
|
3765
|
+
console.error(
|
|
3766
|
+
"Error: SKILL.md is required. Create a SKILL.md file with your skill's documentation before publishing."
|
|
3767
|
+
);
|
|
3768
|
+
process.exit(1);
|
|
3769
|
+
}
|
|
3761
3770
|
if (options.access === "public") {
|
|
3762
3771
|
console.log("");
|
|
3763
3772
|
console.log("\u26A0\uFE0F Warning: You are about to publish this skill as PUBLIC.");
|