website-xp-phone 1.5.0 → 1.5.1
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 +3 -3
- package/public/5.html +1085 -645
- package/public/documents/resume.html +1724 -273
- package/scripts/ensure-blog-worktree.mjs +4 -4
- package/scripts/generate-soundcloud-json.mjs +9 -3
- package/scripts/git-worktree-helper.mjs +102 -89
- package/scripts/hoist-dev-blog-local.mjs +21 -18
- package/scripts/music-schema.mjs +43 -41
- package/scripts/publish-soundcloud-json.mjs +12 -6
- package/scripts/sync-music-links-from-worktree.mjs +4 -2
- package/src/App.tsx +53 -40
- package/src/addons.json +1 -1
- package/src/components/Addon.tsx +2 -6
- package/src/components/BlogContent.tsx +8 -2
- package/src/components/CopyToClipboardButton.tsx +18 -15
- package/src/components/MenuBar.tsx +4 -4
- package/src/components/MenuBarWithContext.tsx +2 -2
- package/src/components/Modal.tsx +10 -11
- package/src/components/MusicContent.tsx +43 -23
- package/src/components/Page.tsx +10 -6
- package/src/components/SitemapContent.tsx +3 -1
- package/src/contacts.json +1 -1
- package/src/env.d.ts +8 -8
- package/src/lib/assistantStateMachine.ts +29 -29
- package/src/lib/audioOverlap.ts +61 -61
- package/src/lib/keyboardInputUtils.ts +113 -113
- package/src/lib/musicSchema.ts +61 -60
- package/src/lib/naggingAssistantClient.ts +189 -185
- package/src/lib/resumeAnalytics.ts +131 -118
- package/src/main.tsx +4 -4
- package/src/pages.json +49 -49
- package/src/sections.json +5 -1
- package/src/styles/main.css +11 -8
- package/src/utils/blogSecurity.ts +62 -55
- package/src/utils/menuItems.ts +4 -1
- package/src/windowing/MinimizedSections.tsx +23 -16
- package/src/windowing/Section.tsx +33 -10
- package/src/windowing/context.tsx +3 -1
- package/src/windowing/index.ts +13 -6
- package/src/windowing/provider.tsx +26 -11
- 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.
|
|
3
|
+
"version": "1.5.1",
|
|
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",
|
|
@@ -45,4 +45,4 @@
|
|
|
45
45
|
"overrides": {
|
|
46
46
|
"lodash": "^4.17.21"
|
|
47
47
|
}
|
|
48
|
-
}
|
|
48
|
+
}
|