@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pure-ds/core",
3
3
  "shortname": "pds",
4
- "version": "0.4.34",
4
+ "version": "0.4.35",
5
5
  "description": "Pure Design System - Why develop a Design System when you can generate one?",
6
6
  "repository": {
7
7
  "type": "git",
@@ -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.log('\n✅ PDS installation complete!\n');
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.log(`📁 Assets installed to: ${webRoot.relative}/assets/pds/`);
534
- console.log('⚙️ Configuration file: pds.config.js');
535
- console.log('📋 Copilot instructions: .github/copilot-instructions.md');
536
- console.log('➤ Cursor instructions: .cursorrules');
537
- console.log('📚 Get your own PDS Storybook via \'npm install @pure-ds/storybook\'');
538
- console.log('📖 See readme.md\n');
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.log('📦 Run "npm run pds:export" to generate assets\n');
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);