@pure-ds/core 0.4.34 → 0.4.35
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/package.json
CHANGED
|
@@ -526,18 +526,18 @@ async function copyPdsAssets() {
|
|
|
526
526
|
console.warn('⚠️ Could not write tracking file:', e?.message || e);
|
|
527
527
|
}
|
|
528
528
|
|
|
529
|
-
// Success summary
|
|
530
|
-
console.
|
|
529
|
+
// Success summary (write to stderr so npm displays it)
|
|
530
|
+
console.error('\n✅ PDS installation complete!\n');
|
|
531
531
|
try {
|
|
532
532
|
const webRoot = await discoverWebRoot(consumerRoot);
|
|
533
|
-
console.
|
|
534
|
-
console.
|
|
535
|
-
console.
|
|
536
|
-
console.
|
|
537
|
-
console.
|
|
538
|
-
console.
|
|
533
|
+
console.error(`📁 Assets installed to: ${webRoot.relative}/assets/pds/`);
|
|
534
|
+
console.error('⚙️ Configuration file: pds.config.js');
|
|
535
|
+
console.error('📋 Copilot instructions: .github/copilot-instructions.md');
|
|
536
|
+
console.error('➤ Cursor instructions: .cursorrules');
|
|
537
|
+
console.error('📚 Get your own PDS Storybook via \'npm install @pure-ds/storybook\'');
|
|
538
|
+
console.error('📖 See readme.md\n');
|
|
539
539
|
} catch {
|
|
540
|
-
console.
|
|
540
|
+
console.error('📦 Run "npm run pds:export" to generate assets\n');
|
|
541
541
|
}
|
|
542
542
|
} catch (error) {
|
|
543
543
|
console.error('❌ PDS postinstall failed (non-fatal):', error.message);
|