ultimate-jekyll-manager 1.0.1 → 1.0.3
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 +12 -0
- package/dist/commands/setup.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
|
+
## [1.0.3] - 2026-03-16
|
|
19
|
+
### Added
|
|
20
|
+
- Ensure consuming projects have `"private": true` in package.json during setup to prevent accidental npm publishes
|
|
21
|
+
|
|
22
|
+
## [1.0.1] - 2026-03-15
|
|
23
|
+
### Changed
|
|
24
|
+
- Upgrade `node-powertools` from ^2.3.2 to ^3.0.0
|
|
25
|
+
- Upgrade `web-manager` from ^4.1.26 to ^4.1.28
|
|
26
|
+
- Upgrade `wonderful-fetch` from ^1.3.4 to ^2.0.4
|
|
27
|
+
- Upgrade `prepare-package` from ^1.2.6 to ^2.0.7
|
|
28
|
+
- Add `preparePackage.type: "copy"` configuration
|
|
29
|
+
|
|
18
30
|
## [Unreleased]
|
|
19
31
|
### Changed
|
|
20
32
|
- Migrate "app" terminology to "brand" across frontend and service worker: renamed `appData`/`fetchAppData` to `brandData`/`fetchBrandData`, `appConfig`/`fetchAppConfig` to `brandConfig`/`fetchBrandConfig`, API endpoint from `/backend-manager/app` to `/backend-manager/brand`, and `this.app` to `this.brand` in service worker
|
package/dist/commands/setup.js
CHANGED
|
@@ -251,6 +251,7 @@ async function ensurePeerDependencies() {
|
|
|
251
251
|
|
|
252
252
|
function setupScripts() {
|
|
253
253
|
project.scripts = project.scripts || {};
|
|
254
|
+
project.private = true;
|
|
254
255
|
|
|
255
256
|
Object.keys(package.projectScripts).forEach((key) => {
|
|
256
257
|
project.scripts[key] = package.projectScripts[key];
|