@pure-ds/core 0.4.33 → 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
|
@@ -525,6 +525,20 @@ async function copyPdsAssets() {
|
|
|
525
525
|
} catch (e) {
|
|
526
526
|
console.warn('⚠️ Could not write tracking file:', e?.message || e);
|
|
527
527
|
}
|
|
528
|
+
|
|
529
|
+
// Success summary (write to stderr so npm displays it)
|
|
530
|
+
console.error('\n✅ PDS installation complete!\n');
|
|
531
|
+
try {
|
|
532
|
+
const webRoot = await discoverWebRoot(consumerRoot);
|
|
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
|
+
} catch {
|
|
540
|
+
console.error('📦 Run "npm run pds:export" to generate assets\n');
|
|
541
|
+
}
|
|
528
542
|
} catch (error) {
|
|
529
543
|
console.error('❌ PDS postinstall failed (non-fatal):', error.message);
|
|
530
544
|
console.log('💡 Static export still available via: npm run pds:export');
|