website-xp-phone 1.5.0 → 1.5.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.
Files changed (41) hide show
  1. package/package.json +2 -2
  2. package/public/5.html +1085 -645
  3. package/public/documents/resume.html +1724 -273
  4. package/scripts/ensure-blog-worktree.mjs +4 -4
  5. package/scripts/generate-soundcloud-json.mjs +9 -3
  6. package/scripts/git-worktree-helper.mjs +102 -89
  7. package/scripts/hoist-dev-blog-local.mjs +21 -18
  8. package/scripts/music-schema.mjs +43 -41
  9. package/scripts/publish-soundcloud-json.mjs +12 -6
  10. package/scripts/sync-music-links-from-worktree.mjs +4 -2
  11. package/src/App.tsx +53 -40
  12. package/src/addons.json +1 -1
  13. package/src/components/Addon.tsx +2 -6
  14. package/src/components/BlogContent.tsx +8 -2
  15. package/src/components/CopyToClipboardButton.tsx +18 -15
  16. package/src/components/MenuBar.tsx +4 -4
  17. package/src/components/MenuBarWithContext.tsx +2 -2
  18. package/src/components/Modal.tsx +10 -11
  19. package/src/components/MusicContent.tsx +43 -23
  20. package/src/components/Page.tsx +10 -6
  21. package/src/components/SitemapContent.tsx +3 -1
  22. package/src/contacts.json +1 -1
  23. package/src/env.d.ts +8 -8
  24. package/src/lib/assistantStateMachine.ts +29 -29
  25. package/src/lib/audioOverlap.ts +61 -61
  26. package/src/lib/keyboardInputUtils.ts +113 -113
  27. package/src/lib/musicSchema.ts +61 -60
  28. package/src/lib/naggingAssistantClient.ts +189 -185
  29. package/src/lib/resumeAnalytics.ts +131 -118
  30. package/src/main.tsx +4 -4
  31. package/src/pages.json +49 -49
  32. package/src/sections.json +5 -1
  33. package/src/styles/main.css +11 -8
  34. package/src/utils/blogSecurity.ts +62 -55
  35. package/src/utils/menuItems.ts +4 -1
  36. package/src/windowing/MinimizedSections.tsx +23 -16
  37. package/src/windowing/Section.tsx +35 -14
  38. package/src/windowing/context.tsx +3 -1
  39. package/src/windowing/index.ts +13 -6
  40. package/src/windowing/provider.tsx +26 -11
  41. package/src/windowing/server.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "website-xp-phone",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "author": "Kirill <kine> Nevzorov <akinevz@outlook.com>",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "build": "npm run generate:music && vite build",
9
9
  "build:local": "npm run generate:music && npm run publish:music && vite build",
10
10
  "preview": "vite preview --host 127.0.0.1 --port 8086",
11
- "lint": "eslint ./src --ext .ts,.tsx",
11
+ "lint": "npx --yes prettier --write --ignore-unknown src public scripts && eslint ./src --ext .ts,.tsx",
12
12
  "test": "node --test",
13
13
  "test:watch": "node --test --watch",
14
14
  "check:audit": "npm audit --audit-level=low",