@skillsmith/cli 0.6.1 → 0.6.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/CHANGELOG.md +7 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/commands/info.js +1 -1
- package/dist/src/commands/install.js +1 -1
- package/dist/src/commands/install.js.map +1 -1
- package/dist/src/commands/search.d.ts.map +1 -1
- package/dist/src/commands/search.helpers.d.ts +29 -0
- package/dist/src/commands/search.helpers.d.ts.map +1 -1
- package/dist/src/commands/search.helpers.js +39 -1
- package/dist/src/commands/search.helpers.js.map +1 -1
- package/dist/src/commands/search.js +15 -2
- package/dist/src/commands/search.js.map +1 -1
- package/dist/src/commands/search.test.d.ts +10 -0
- package/dist/src/commands/search.test.d.ts.map +1 -0
- package/dist/src/commands/search.test.js +179 -0
- package/dist/src/commands/search.test.js.map +1 -0
- package/dist/src/commands/sync.d.ts.map +1 -1
- package/dist/src/commands/sync.helpers.d.ts +29 -1
- package/dist/src/commands/sync.helpers.d.ts.map +1 -1
- package/dist/src/commands/sync.helpers.js +38 -0
- package/dist/src/commands/sync.helpers.js.map +1 -1
- package/dist/src/commands/sync.js +20 -1
- package/dist/src/commands/sync.js.map +1 -1
- package/dist/src/utils/open-database.d.ts.map +1 -1
- package/dist/src/utils/open-database.js +33 -4
- package/dist/src/utils/open-database.js.map +1 -1
- package/dist/tests/open-database.test.js +25 -0
- package/dist/tests/open-database.test.js.map +1 -1
- package/dist/tests/sync.auth-ux.test.d.ts +14 -0
- package/dist/tests/sync.auth-ux.test.d.ts.map +1 -0
- package/dist/tests/sync.auth-ux.test.js +148 -0
- package/dist/tests/sync.auth-ux.test.js.map +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to `@skillsmith/cli` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## v0.6.2
|
|
8
|
+
|
|
9
|
+
- **Chore**: SMI-5008 remove stripe SDK from @skillsmith/core dependencies (#869) (#1262)
|
|
10
|
+
|
|
11
|
+
- **Chore**: SMI-5006 — bump `@skillsmith/core` dependency range to `^0.7.0` (BREAKING in core: billing moved to `@smith-horn/enterprise/billing`). No CLI surface change; CLI does not consume the billing module directly.
|
|
12
|
+
- **Chore**: SMI-4539 — track `@skillsmith/core` dependency range to `^0.6.3` (synthetic patch release verifying the npm trusted-publisher OIDC publish path, PR #1171). No functional change.
|
|
13
|
+
|
|
7
14
|
## v0.6.1
|
|
8
15
|
|
|
9
16
|
- **Fix**: SMI-4917 — repair first-time install (search crash, sync drops all skills, no self-config) (#1132)
|