@skillsmith/cli 0.5.5 → 0.5.7
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 +13 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/commands/author/init.d.ts.map +1 -1
- package/dist/src/commands/author/init.helpers.d.ts +80 -0
- package/dist/src/commands/author/init.helpers.d.ts.map +1 -0
- package/dist/src/commands/author/init.helpers.js +107 -0
- package/dist/src/commands/author/init.helpers.js.map +1 -0
- package/dist/src/commands/author/init.js +55 -57
- package/dist/src/commands/author/init.js.map +1 -1
- package/dist/src/commands/sync.d.ts.map +1 -1
- package/dist/src/commands/sync.helpers.d.ts +27 -0
- package/dist/src/commands/sync.helpers.d.ts.map +1 -0
- package/dist/src/commands/sync.helpers.js +52 -0
- package/dist/src/commands/sync.helpers.js.map +1 -0
- package/dist/src/commands/sync.js +12 -0
- package/dist/src/commands/sync.js.map +1 -1
- package/dist/src/index.js +0 -0
- package/dist/src/utils/errors.d.ts +52 -0
- package/dist/src/utils/errors.d.ts.map +1 -0
- package/dist/src/utils/errors.js +58 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/tests/init.test.d.ts +30 -0
- package/dist/tests/init.test.d.ts.map +1 -0
- package/dist/tests/init.test.js +356 -0
- package/dist/tests/init.test.js.map +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@skillsmith/cli` are documented here.
|
|
4
4
|
|
|
5
|
+
## v0.5.7
|
|
6
|
+
|
|
7
|
+
- **Refactor**: initSkill throws InitSkillError instead of process.exit (SMI-4314) (#642)
|
|
8
|
+
|
|
9
|
+
## v0.5.6
|
|
10
|
+
|
|
11
|
+
- Version bump
|
|
12
|
+
|
|
5
13
|
## v0.5.5
|
|
6
14
|
|
|
7
15
|
- **Other**: SMI-4190: release cadence docs — ADR-114 + CHANGELOG backfill + CONTRIBUTING (#552)
|
|
8
16
|
|
|
9
17
|
## [Unreleased]
|
|
10
18
|
|
|
11
|
-
|
|
19
|
+
- **Fix**: `skillsmith author init` now reports a friendly error and cleans up
|
|
20
|
+
partial output when a file operation fails. When an init is run against a
|
|
21
|
+
pre-existing directory that the user confirms to overwrite, the existing
|
|
22
|
+
directory is preserved on mid-scaffold failure instead of being removed
|
|
23
|
+
(SMI-4289, closes #602).
|
|
12
24
|
|
|
13
25
|
## v0.5.4
|
|
14
26
|
|