Skip to content

Commit f9fe7f5

Browse files
authored
Merge pull request #390 from bichikim/dev
Dev
2 parents f300c4b + 49765a8 commit f9fe7f5

File tree

571 files changed

+11393
-3898
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

571 files changed

+11393
-3898
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ coverage
9090
.temp
9191
.cache
9292
.turbo
93+
.cert
9394

9495
docs/.vitepress/cache
9596
docs/.vitepress/dist

.hintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"axe/aria": "off",
7+
"no-inline-styles": "off"
8+
}
9+
}

.storybook/main.ts

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
import nodePath from 'node:path'
21
import type {StorybookConfig} from 'storybook-solidjs-vite'
32

43
const config: StorybookConfig = {
54
addons: [
6-
getAbsolutePath('@storybook/addon-links'),
7-
getAbsolutePath('@storybook/addon-essentials'),
8-
getAbsolutePath('@storybook/addon-interactions'),
5+
'@storybook/addon-links',
6+
'@storybook/addon-essentials',
7+
'@storybook/addon-interactions',
98
],
109
docs: {},
1110
framework: {
12-
name: getAbsolutePath('storybook-solidjs-vite'),
11+
name: 'storybook-solidjs-vite',
1312
options: {
1413
builder: {
1514
viteConfigPath: './.storybook/vite.config.mts',
@@ -21,11 +20,8 @@ const config: StorybookConfig = {
2120
'../apps/bplan-client/src/**/*.story.@(js|jsx|mjs|ts|tsx)',
2221
'../packages/solid/src/**/*.mdx',
2322
'../packages/solid/src/**/*.story.@(js|jsx|mjs|ts|tsx)',
23+
'../packages/solid-components/src/**/*.story.@(js|jsx|mjs|ts|tsx)',
24+
'../packages/player/src/**/*.story.@(js|jsx|mjs|ts|tsx)',
2425
],
2526
}
2627
export default config
27-
28-
function getAbsolutePath(value: string): any {
29-
// eslint-disable-next-line unicorn/prefer-module
30-
return nodePath.dirname(require.resolve(nodePath.join(value, 'package.json')))
31-
}

.storybook/preview.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ import 'virtual:uno.css'
33

44
const preview: Preview = {
55
parameters: {
6-
actions: {argTypesRegex: '^on[A-Z].*'},
76
controls: {
87
matchers: {
98
color: /(background|color)$/iu,
109
date: /date$/iu,
1110
},
1211
},
1312
},
13+
14+
tags: ['autodocs'],
1415
}
1516

1617
export default preview

.storybook/vite.config.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {monorepoAlias} from '@winter-love/vite-plugin-monorepo-alias'
22
import {fileURLToPath, URL} from 'node:url'
33
import unoCss from '@unocss/vite'
44
import {defineConfig, Plugin} from 'vite'
5+
56
const resolvePath = (url: string) => fileURLToPath(new URL(`../${url}`, import.meta.url))
67
export default defineConfig({
78
plugins: [

.vscode/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"cSpell.words": [
3+
"bplan",
4+
"codegen",
5+
"Coong",
6+
"demi",
7+
"hugeicons",
8+
"iconify",
9+
"pinia",
10+
"smplr",
11+
"solidjs",
12+
"tabler",
13+
"tonejs",
14+
"unocss",
15+
"vinxi"
16+
]
17+
}

apps/bplan-client/README.md

Lines changed: 61 additions & 1 deletion

apps/bplan-client/build-hot-fix.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ function getDefaultExportFromNamespaceIfNotNamed (n) {
1515
}`), 'utf8')
1616
}
1717

18-
fix()
18+
fix().then(() => console.info('hot fix done'))

apps/bplan-client/package.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,29 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14+
"@tonejs/midi": "^2.0.28",
1415
"@solidjs/meta": "^0.29.4",
15-
"@solidjs/router": "^0.15.1",
16+
"@solidjs/router": "^0.14.10",
1617
"@solidjs/start": "^1.0.10",
18+
"@winter-love/lodash": "workspace:*",
1719
"@winter-love/solid-use": "workspace:*",
1820
"@winter-love/utils": "workspace:*",
19-
"@winter-love/lodash": "workspace:*",
20-
"standardized-audio-context": "^25.3.77",
21-
"smplr": "^0.15.1",
2221
"class-variance-authority": "^0.7.1",
22+
"smplr": "^0.15.1",
2323
"solid-js": "^1.9.3",
24-
"vinxi": "^0.5.0",
25-
"vite": "^6.0.2"
24+
"standardized-audio-context": "^25.3.77",
25+
"vinxi": "0.4.3",
26+
"vite": "^5.4.11"
2627
},
2728
"devDependencies": {
28-
"vite-plugin-pwa": "^0.21.1",
29-
"@vite-pwa/assets-generator": "^0.2.6",
29+
"@iconify-json/hugeicons": "^1.2.3",
30+
"@iconify-json/tabler": "^1.2.3",
3031
"@unocss/vite": "^0.64.1",
32+
"@vite-pwa/assets-generator": "^0.2.6",
3133
"flush-promises": "^1.0.2",
32-
"typescript": "^5.6.3",
33-
"unocss": "^0.64.1"
34+
"typescript": "^5.7.2",
35+
"unocss": "^0.64.1",
36+
"vite-plugin-pwa": "^0.21.1"
3437
},
3538
"engines": {
3639
"node": ">=20 <= 22"
Binary file not shown.

0 commit comments

Comments
 (0)