lapikit 0.0.3 → 0.0.4
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/dist/{server/modules → internal}/ansi.d.ts +0 -1
- package/dist/{server/modules → internal}/ansi.js +0 -11
- package/dist/{server/modules → internal}/colors.js +1 -1
- package/dist/internal/index.d.ts +2 -0
- package/dist/internal/index.js +2 -0
- package/dist/internal/terminal.d.ts +1 -0
- package/dist/internal/terminal.js +12 -0
- package/dist/internal/types.d.ts +44 -0
- package/dist/internal/types.js +1 -0
- package/dist/plugin/modules/config.d.ts +2 -0
- package/dist/plugin/modules/config.js +54 -0
- package/dist/plugin/modules/importer.js +15 -0
- package/dist/{server/vite.d.ts → plugin/vitejs.d.ts} +1 -6
- package/dist/plugin/vitejs.js +26 -0
- package/dist/preset.d.ts +2 -0
- package/dist/preset.js +80 -0
- package/dist/style/css.d.ts +2 -0
- package/dist/style/css.js +31 -0
- package/dist/{styles → style}/normalize.css +2 -2
- package/dist/style/parser/color.d.ts +5 -0
- package/dist/{server/modules/themes.js → style/parser/color.js} +14 -31
- package/dist/style/parser/component.d.ts +2 -0
- package/dist/style/parser/component.js +115 -0
- package/dist/style/parser/device.d.ts +2 -0
- package/dist/{server/modules/devices.js → style/parser/device.js} +6 -21
- package/dist/style/parser/index.d.ts +4 -0
- package/dist/style/parser/index.js +4 -0
- package/dist/style/parser/variable.d.ts +2 -0
- package/dist/style/parser/variable.js +25 -0
- package/package.json +2 -2
- package/dist/server/modules/css.d.ts +0 -1
- package/dist/server/modules/css.js +0 -144
- package/dist/server/modules/devices.d.ts +0 -1
- package/dist/server/modules/importer.js +0 -13
- package/dist/server/modules/themes.d.ts +0 -4
- package/dist/server/vite.js +0 -17
- package/dist/styles/variables.css +0 -7
- /package/dist/{server/modules → internal}/colors.d.ts +0 -0
- /package/dist/{server/modules → internal}/minify.d.ts +0 -0
- /package/dist/{server/modules → internal}/minify.js +0 -0
- /package/dist/{server → plugin}/modules/importer.d.ts +0 -0
- /package/dist/{server/modules → utils}/x11.d.ts +0 -0
- /package/dist/{server/modules → utils}/x11.js +0 -0
|
@@ -42,14 +42,3 @@ export const ansi = {
|
|
|
42
42
|
inverse,
|
|
43
43
|
underline
|
|
44
44
|
};
|
|
45
|
-
export const sendConsole = (type = 'info', msg) => {
|
|
46
|
-
const name = ansi.color.cyan('lapikit');
|
|
47
|
-
if (type === 'error')
|
|
48
|
-
console.error(name, ansi.bold.red('[error]'), msg);
|
|
49
|
-
else if (type === 'warn')
|
|
50
|
-
console.warn(name, ansi.bold.yellow('[warn]'), msg);
|
|
51
|
-
else if (type === 'success')
|
|
52
|
-
console.warn(name, ansi.bold.green('[success]'), msg);
|
|
53
|
-
else
|
|
54
|
-
console.log(name, ansi.bold.blue('[info]'), msg);
|
|
55
|
-
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const terminal: (type: "info" | "error" | "warn" | "success" | undefined, msg: string) => void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ansi } from './ansi.js';
|
|
2
|
+
export const terminal = (type = 'info', msg) => {
|
|
3
|
+
const name = ansi.color.cyan('lapikit');
|
|
4
|
+
if (type === 'error')
|
|
5
|
+
console.error(name, ansi.bold.red('[error]'), msg);
|
|
6
|
+
else if (type === 'warn')
|
|
7
|
+
console.warn(name, ansi.bold.yellow('[warn]'), msg);
|
|
8
|
+
else if (type === 'success')
|
|
9
|
+
console.warn(name, ansi.bold.green('[success]'), msg);
|
|
10
|
+
else
|
|
11
|
+
console.log(name, ansi.bold.blue('[info]'), msg);
|
|
12
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export type FontFamily = {
|
|
2
|
+
[key: string]: string | string[];
|
|
3
|
+
};
|
|
4
|
+
export type Colors = {
|
|
5
|
+
[key: string]: {
|
|
6
|
+
light: string;
|
|
7
|
+
dark: string;
|
|
8
|
+
} | string;
|
|
9
|
+
};
|
|
10
|
+
export type Thresholds = {
|
|
11
|
+
[key: string]: number | string;
|
|
12
|
+
};
|
|
13
|
+
export type Radius = {
|
|
14
|
+
[key: string]: number | string;
|
|
15
|
+
};
|
|
16
|
+
export interface Lapikit {
|
|
17
|
+
options: {
|
|
18
|
+
normalize: boolean;
|
|
19
|
+
minify: boolean;
|
|
20
|
+
};
|
|
21
|
+
theme: {
|
|
22
|
+
colorScheme: string;
|
|
23
|
+
colors: Colors;
|
|
24
|
+
};
|
|
25
|
+
breakpoints: {
|
|
26
|
+
mobileBreakpoint: string;
|
|
27
|
+
tabletBreakpoint: string;
|
|
28
|
+
laptopBreakpoint: string;
|
|
29
|
+
thresholds: Thresholds;
|
|
30
|
+
};
|
|
31
|
+
styles: {
|
|
32
|
+
spacing: string;
|
|
33
|
+
corner: {
|
|
34
|
+
active: boolean;
|
|
35
|
+
radius: Radius;
|
|
36
|
+
};
|
|
37
|
+
font: FontFamily;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
type DeepOptional<T> = {
|
|
41
|
+
[P in keyof T]?: T[P] extends (infer U)[] ? DeepOptional<U>[] : T[P] extends object ? DeepOptional<T[P]> : T[P];
|
|
42
|
+
};
|
|
43
|
+
export type LapikitConfig = DeepOptional<Lapikit>;
|
|
44
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { config } from '../../preset.js';
|
|
2
|
+
export const parseConfig = (props) => {
|
|
3
|
+
if (!props)
|
|
4
|
+
return config;
|
|
5
|
+
const newConfig = { ...config };
|
|
6
|
+
if (props?.options) {
|
|
7
|
+
if (props.options.normalize !== undefined)
|
|
8
|
+
newConfig.options.normalize = props.options.normalize;
|
|
9
|
+
if (props.options.minify !== undefined)
|
|
10
|
+
newConfig.options.minify = props.options.minify;
|
|
11
|
+
}
|
|
12
|
+
if (props?.theme) {
|
|
13
|
+
if (props.theme.colorScheme !== undefined)
|
|
14
|
+
newConfig.theme.colorScheme = props.theme.colorScheme;
|
|
15
|
+
if (props.theme.colors) {
|
|
16
|
+
newConfig.theme.colors = {
|
|
17
|
+
...newConfig.theme.colors,
|
|
18
|
+
...props.theme.colors
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
if (props?.breakpoints) {
|
|
23
|
+
if (props.breakpoints.mobileBreakpoint !== undefined)
|
|
24
|
+
newConfig.breakpoints.mobileBreakpoint = props.breakpoints.mobileBreakpoint;
|
|
25
|
+
if (props.breakpoints.tabletBreakpoint !== undefined)
|
|
26
|
+
newConfig.breakpoints.tabletBreakpoint = props.breakpoints.tabletBreakpoint;
|
|
27
|
+
if (props.breakpoints.laptopBreakpoint !== undefined)
|
|
28
|
+
newConfig.breakpoints.laptopBreakpoint = props.breakpoints.laptopBreakpoint;
|
|
29
|
+
if (props.breakpoints.thresholds)
|
|
30
|
+
newConfig.breakpoints.thresholds = {
|
|
31
|
+
...newConfig.breakpoints.thresholds,
|
|
32
|
+
...props.breakpoints.thresholds
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
if (props?.styles) {
|
|
36
|
+
if (props.styles.spacing !== undefined)
|
|
37
|
+
newConfig.styles.spacing = props.styles.spacing;
|
|
38
|
+
if (props.styles.corner !== undefined) {
|
|
39
|
+
if (props.styles.corner.active !== undefined)
|
|
40
|
+
newConfig.styles.corner.active = props.styles.corner.active;
|
|
41
|
+
if (props.styles.corner.radius)
|
|
42
|
+
newConfig.styles.corner.radius = {
|
|
43
|
+
...newConfig.styles.corner.radius,
|
|
44
|
+
...props.styles.corner.radius
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
if (props.styles.font)
|
|
48
|
+
newConfig.styles.font = {
|
|
49
|
+
...newConfig.styles.font,
|
|
50
|
+
...props.styles.font
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
return newConfig;
|
|
54
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import { terminal, ansi } from '../../internal/index.js';
|
|
4
|
+
const app = process.cwd();
|
|
5
|
+
const pathConfig = path.resolve(app, 'lapikit.config.js');
|
|
6
|
+
export const importer = async () => {
|
|
7
|
+
if (!fs.existsSync(pathConfig)) {
|
|
8
|
+
terminal('error', `config file not found\n ${ansi.color.yellow('Could not find lapikit.config.js. See https://localhost/docs/kit/vite to learn more about the configuration file.')}\n\n${ansi.color.blue('for initializing a new lapikit config, run:')}\n ${ansi.variant.bold('npx lapikit init')} ${ansi.bold.yellow('(preview)')}\n\n`);
|
|
9
|
+
process.exit(1);
|
|
10
|
+
}
|
|
11
|
+
const timestamp = Date.now();
|
|
12
|
+
const fileUrl = `file://${pathConfig}?t=${timestamp}`;
|
|
13
|
+
const content = await import(fileUrl);
|
|
14
|
+
return content.default;
|
|
15
|
+
};
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
import type { ViteDevServer } from 'vite';
|
|
2
|
-
|
|
3
|
-
normalize?: boolean;
|
|
4
|
-
minify?: boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare function lapikit(options?: LapikitPlugin): Promise<{
|
|
2
|
+
export declare function lapikit(): Promise<{
|
|
7
3
|
name: string;
|
|
8
4
|
configResolved(): Promise<void>;
|
|
9
5
|
configureServer(server: ViteDevServer): Promise<void>;
|
|
10
6
|
}>;
|
|
11
|
-
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { importer } from './modules/importer.js';
|
|
2
|
+
import { processCSS } from '../style/css.js';
|
|
3
|
+
import { parseConfig } from './modules/config.js';
|
|
4
|
+
import { terminal } from '../internal/terminal.js';
|
|
5
|
+
export async function lapikit() {
|
|
6
|
+
return {
|
|
7
|
+
name: 'lapikit/vite.js',
|
|
8
|
+
async configResolved() {
|
|
9
|
+
const config = await importer();
|
|
10
|
+
const result = await parseConfig(config);
|
|
11
|
+
await processCSS(result);
|
|
12
|
+
terminal('info', 'lapikit is up!');
|
|
13
|
+
},
|
|
14
|
+
async configureServer(server) {
|
|
15
|
+
server.watcher.add('./lapikit.config.js');
|
|
16
|
+
server.watcher.on('change', async (filePath) => {
|
|
17
|
+
if (String(filePath).includes('lapikit.config.js')) {
|
|
18
|
+
const config = await importer();
|
|
19
|
+
const result = await parseConfig(config);
|
|
20
|
+
await processCSS(result);
|
|
21
|
+
terminal('info', 'lapikit config reloaded');
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
}
|
package/dist/preset.d.ts
ADDED
package/dist/preset.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export const config = {
|
|
2
|
+
options: {
|
|
3
|
+
normalize: true, // true | false
|
|
4
|
+
minify: false // true | false
|
|
5
|
+
},
|
|
6
|
+
theme: {
|
|
7
|
+
colorScheme: 'dark', // 'light' | 'dark' | 'auto'
|
|
8
|
+
colors: {
|
|
9
|
+
primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
|
|
10
|
+
secondary: { light: 'oklch(65% 0.241 354.308)', dark: 'oklch(65% 0.241 354.308)' },
|
|
11
|
+
tertiary: { light: 'oklch(77% 0.152 181.912)', dark: 'oklch(77% 0.152 181.912)' },
|
|
12
|
+
neutral: { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
|
|
13
|
+
info: { light: 'oklch(74% 0.16 232.661)', dark: 'oklch(74% 0.16 232.661)' },
|
|
14
|
+
success: { light: 'oklch(76% 0.177 163.223)', dark: 'oklch(76% 0.177 163.223)' },
|
|
15
|
+
warning: { light: 'oklch(82% 0.189 84.429)', dark: 'oklch(82% 0.189 84.429)' },
|
|
16
|
+
error: { light: 'oklch(71% 0.194 13.428)', dark: 'oklch(71% 0.194 13.428)' },
|
|
17
|
+
base: { light: 'oklch(100% 0 0)', dark: 'oklch(25.33% 0.016 252.42)' },
|
|
18
|
+
surface: { light: 'oklch(98% 0 0)', dark: 'oklch(23.26% 0.014 253.1)' },
|
|
19
|
+
container: { light: 'oklch(95% 0 0)', dark: 'oklch(21.15% 0.012 254.09)' },
|
|
20
|
+
shadow: 'black'
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
breakpoints: {
|
|
24
|
+
mobileBreakpoint: 'sm',
|
|
25
|
+
tabletBreakpoint: 'md',
|
|
26
|
+
laptopBreakpoint: 'xl',
|
|
27
|
+
thresholds: {
|
|
28
|
+
none: 0, // 0px
|
|
29
|
+
xs: '28rem', //448px
|
|
30
|
+
sm: '40rem', //640px
|
|
31
|
+
md: '48rem', //768px
|
|
32
|
+
lg: '64rem', //1024px
|
|
33
|
+
xl: '80rem', //1280px
|
|
34
|
+
'2xl': '96rem', //1536px
|
|
35
|
+
'3xl': '112rem' //1792px
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
styles: {
|
|
39
|
+
spacing: '0.125rem', // 2px
|
|
40
|
+
corner: {
|
|
41
|
+
active: true, // true | false
|
|
42
|
+
radius: {
|
|
43
|
+
sm: '0.125rem', // 2px
|
|
44
|
+
md: '0.25rem', // 4px
|
|
45
|
+
lg: '0.5rem', // 8px
|
|
46
|
+
xl: '0.75rem', // 12px
|
|
47
|
+
'2xl': '1rem', // 16px
|
|
48
|
+
'3xl': '1.5rem', // 24px
|
|
49
|
+
full: '9999px' // 9999px
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
font: {
|
|
53
|
+
sans: [
|
|
54
|
+
'system-ui',
|
|
55
|
+
'-apple-system',
|
|
56
|
+
'BlinkMacSystemFont',
|
|
57
|
+
'Segoe UI',
|
|
58
|
+
'Roboto',
|
|
59
|
+
'Helvetica Neue',
|
|
60
|
+
'Arial',
|
|
61
|
+
'sans-serif',
|
|
62
|
+
'Apple Color Emoji',
|
|
63
|
+
'Segoe UI Emoji',
|
|
64
|
+
'Segoe UI Symbol'
|
|
65
|
+
],
|
|
66
|
+
mono: [
|
|
67
|
+
'SFMono-Regular',
|
|
68
|
+
'ui-monospace',
|
|
69
|
+
'SF Mono',
|
|
70
|
+
'Menlo',
|
|
71
|
+
'Monaco',
|
|
72
|
+
'Consolas',
|
|
73
|
+
'Liberation Mono',
|
|
74
|
+
'Courier New',
|
|
75
|
+
'monospace'
|
|
76
|
+
],
|
|
77
|
+
serif: ['Merriweather', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif']
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { fileURLToPath } from 'url';
|
|
2
|
+
import { dirname } from 'path';
|
|
3
|
+
import fs from 'fs';
|
|
4
|
+
import fsPromises from 'fs/promises';
|
|
5
|
+
import path from 'path';
|
|
6
|
+
import { minify } from '../internal/minify.js';
|
|
7
|
+
import { colors, component, devices, variables } from './parser/index.js';
|
|
8
|
+
import { terminal } from '../internal/terminal.js';
|
|
9
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
10
|
+
const __dirname = dirname(__filename);
|
|
11
|
+
const __components = path.resolve('src/components');
|
|
12
|
+
export const processCSS = async (config) => {
|
|
13
|
+
const _normalize = fs.readFileSync(path.resolve(__dirname, './normalize.css'), 'utf-8');
|
|
14
|
+
let styles = ``;
|
|
15
|
+
if (config.options.normalize)
|
|
16
|
+
styles += `${_normalize}\n`;
|
|
17
|
+
const colorScheme = colors(config);
|
|
18
|
+
const deviceDisplay = devices(config);
|
|
19
|
+
const variablesStyles = variables(config);
|
|
20
|
+
styles += `${colorScheme.root}\n`;
|
|
21
|
+
styles += `${variablesStyles}\n`;
|
|
22
|
+
styles += `${colorScheme.className}\n`;
|
|
23
|
+
styles += `${deviceDisplay}\n`;
|
|
24
|
+
if (fs.existsSync(__components) && fs.statSync(__components).isDirectory())
|
|
25
|
+
styles += component(config);
|
|
26
|
+
if (config.options.minify) {
|
|
27
|
+
styles = minify(styles);
|
|
28
|
+
terminal('success', 'css minified');
|
|
29
|
+
}
|
|
30
|
+
fsPromises.writeFile(path.resolve(__dirname, '../styles.css'), styles);
|
|
31
|
+
};
|
|
@@ -3,12 +3,12 @@ html {
|
|
|
3
3
|
tab-size: 4;
|
|
4
4
|
line-height: 1.5;
|
|
5
5
|
box-sizing: border-box;
|
|
6
|
-
font-family: var(--
|
|
6
|
+
font-family: var(--kit-font-family-sans);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
pre,
|
|
10
10
|
code {
|
|
11
|
-
font-family: var(--
|
|
11
|
+
font-family: var(--kit-font-family-mono);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
body {
|
|
@@ -1,28 +1,10 @@
|
|
|
1
|
-
import { parseColor } from '
|
|
2
|
-
const
|
|
3
|
-
primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
|
|
4
|
-
secondary: { light: 'oklch(65% 0.241 354.308)', dark: 'oklch(65% 0.241 354.308)' },
|
|
5
|
-
tertiary: { light: 'oklch(77% 0.152 181.912)', dark: 'oklch(77% 0.152 181.912)' },
|
|
6
|
-
neutral: { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
|
|
7
|
-
info: { light: 'oklch(74% 0.16 232.661)', dark: 'oklch(74% 0.16 232.661)' },
|
|
8
|
-
success: { light: 'oklch(76% 0.177 163.223)', dark: 'oklch(76% 0.177 163.223)' },
|
|
9
|
-
warning: { light: 'oklch(82% 0.189 84.429)', dark: 'oklch(82% 0.189 84.429)' },
|
|
10
|
-
error: { light: 'oklch(71% 0.194 13.428)', dark: 'oklch(71% 0.194 13.428)' },
|
|
11
|
-
base: { light: 'oklch(100% 0 0)', dark: 'oklch(25.33% 0.016 252.42)' },
|
|
12
|
-
surface: { light: 'oklch(98% 0 0)', dark: 'oklch(23.26% 0.014 253.1)' },
|
|
13
|
-
container: { light: 'oklch(95% 0 0)', dark: 'oklch(21.15% 0.012 254.09)' },
|
|
14
|
-
shadow: 'black',
|
|
15
|
-
hexa: '#c1ec75',
|
|
16
|
-
rgb: 'rgb(238, 19, 121)',
|
|
17
|
-
rgba: 'rgba(19, 34, 238, 0.5)',
|
|
18
|
-
oklch: 'oklch(45% 0.24 277.023)'
|
|
19
|
-
};
|
|
20
|
-
export const colors = () => {
|
|
1
|
+
import { parseColor } from '../../internal/colors.js';
|
|
2
|
+
export const colors = (config) => {
|
|
21
3
|
const schemes = {
|
|
22
4
|
light: {},
|
|
23
5
|
dark: {}
|
|
24
6
|
};
|
|
25
|
-
for (const [property, values] of Object.entries(
|
|
7
|
+
for (const [property, values] of Object.entries(config.theme.colors)) {
|
|
26
8
|
if (typeof values === 'string') {
|
|
27
9
|
// for all color scheme
|
|
28
10
|
const _refColor = parseColor(values);
|
|
@@ -42,10 +24,9 @@ export const colors = () => {
|
|
|
42
24
|
}
|
|
43
25
|
}
|
|
44
26
|
}
|
|
45
|
-
const theming = 'mixed';
|
|
46
27
|
// css variables
|
|
47
28
|
let cssVariables = '';
|
|
48
|
-
if (
|
|
29
|
+
if (config.theme.colorScheme === 'auto') {
|
|
49
30
|
for (const [themeName, colors] of Object.entries(schemes)) {
|
|
50
31
|
const used = themeName;
|
|
51
32
|
const inversed = used === 'light' ? 'dark' : 'light';
|
|
@@ -53,29 +34,31 @@ export const colors = () => {
|
|
|
53
34
|
cssVariables += `:root, .${used} {\n`;
|
|
54
35
|
cssVariables += `color-scheme: ${used};\n`;
|
|
55
36
|
for (const [colorName, colorValue] of Object.entries(colors)) {
|
|
56
|
-
cssVariables +=
|
|
37
|
+
cssVariables += `--kit-${colorName}: ${colorValue};\n`;
|
|
57
38
|
}
|
|
58
39
|
cssVariables += `}\n`;
|
|
59
40
|
cssVariables += `.${inversed} {\n`;
|
|
60
41
|
cssVariables += `color-scheme: ${used};\n`;
|
|
61
42
|
for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
|
|
62
|
-
cssVariables +=
|
|
43
|
+
cssVariables += `--kit-${colorName}: ${colorValue};\n`;
|
|
63
44
|
}
|
|
64
45
|
cssVariables += `}\n`;
|
|
65
46
|
cssVariables += `}\n`;
|
|
66
47
|
}
|
|
67
48
|
}
|
|
68
49
|
else {
|
|
69
|
-
const used =
|
|
70
|
-
const inversed =
|
|
50
|
+
const used = config.theme.colorScheme;
|
|
51
|
+
const inversed = config.theme.colorScheme === 'light' ? 'dark' : 'light';
|
|
71
52
|
cssVariables += `:root, .${used} {\n`;
|
|
53
|
+
cssVariables += `color-scheme: ${used};\n`;
|
|
72
54
|
for (const [colorName, colorValue] of Object.entries(schemes[used])) {
|
|
73
|
-
cssVariables +=
|
|
55
|
+
cssVariables += `--kit-${colorName}: ${colorValue};\n`;
|
|
74
56
|
}
|
|
75
57
|
cssVariables += `}\n`;
|
|
76
58
|
cssVariables += `.${inversed} {\n`;
|
|
59
|
+
cssVariables += `color-scheme: ${used};\n`;
|
|
77
60
|
for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
|
|
78
|
-
cssVariables +=
|
|
61
|
+
cssVariables += `--kit-${colorName}: ${colorValue};\n`;
|
|
79
62
|
}
|
|
80
63
|
cssVariables += `}\n`;
|
|
81
64
|
}
|
|
@@ -83,8 +66,8 @@ export const colors = () => {
|
|
|
83
66
|
let classStyles = '';
|
|
84
67
|
for (const [property] of Object.entries(schemes.light)) {
|
|
85
68
|
classStyles += `.${property} {\n`;
|
|
86
|
-
classStyles += `--background-color: var(
|
|
87
|
-
classStyles += `--color: var(
|
|
69
|
+
classStyles += `--background-color: var(--kit-${property});\n`;
|
|
70
|
+
classStyles += `--color: var(--kit-${property});\n`;
|
|
88
71
|
classStyles += `}\n`;
|
|
89
72
|
}
|
|
90
73
|
return {
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { fileURLToPath } from 'url';
|
|
2
|
+
import { dirname } from 'path';
|
|
3
|
+
import fs from 'fs';
|
|
4
|
+
import path from 'path';
|
|
5
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
6
|
+
const __dirname = dirname(__filename);
|
|
7
|
+
export const component = (config) => {
|
|
8
|
+
let css = ``;
|
|
9
|
+
const tresholds = {
|
|
10
|
+
_default: '',
|
|
11
|
+
static: '',
|
|
12
|
+
min: '',
|
|
13
|
+
max: '',
|
|
14
|
+
all: ''
|
|
15
|
+
};
|
|
16
|
+
function loadComponentCSS(directory) {
|
|
17
|
+
fs.readdirSync(directory).forEach((File) => {
|
|
18
|
+
const absolutePath = path.join(directory, File);
|
|
19
|
+
if (fs.statSync(absolutePath).isDirectory())
|
|
20
|
+
return loadComponentCSS(absolutePath);
|
|
21
|
+
else if (absolutePath.endsWith('.css') && !absolutePath.includes('/_')) {
|
|
22
|
+
const content = parser(fs.readFileSync(absolutePath, 'utf-8'));
|
|
23
|
+
tresholds._default += content.allExtracted
|
|
24
|
+
.replaceAll('[breakpoint|min]', '[breakpoint]')
|
|
25
|
+
.replaceAll('[breakpoint|max]', '[breakpoint]')
|
|
26
|
+
.replaceAll('[breakpoint|all]', '[breakpoint]');
|
|
27
|
+
tresholds.static += content.defaultExtracted;
|
|
28
|
+
tresholds.min += content.minExtracted.replaceAll('[breakpoint|min]', '[breakpoint]');
|
|
29
|
+
tresholds.max += content.maxExtracted.replaceAll('[breakpoint|max]', '[breakpoint]');
|
|
30
|
+
tresholds.all += content.allModifierExtracted.replaceAll('[breakpoint|all]', '[breakpoint]');
|
|
31
|
+
return (css += `${content.cleaned}\n`);
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
loadComponentCSS(path.resolve(__dirname, '../../components'));
|
|
36
|
+
for (const property in config.breakpoints.thresholds) {
|
|
37
|
+
if (property !== '_default') {
|
|
38
|
+
const name = `.${/^\d/.test(property) ? `\\3${property}` : property}\\:`;
|
|
39
|
+
const value = typeof config.breakpoints.thresholds[property] === 'number'
|
|
40
|
+
? `${config.breakpoints.thresholds[property]}px`
|
|
41
|
+
: config.breakpoints.thresholds[property];
|
|
42
|
+
if (tresholds.static !== '' || tresholds.all !== '' || tresholds.min !== '') {
|
|
43
|
+
css += `@media screen and (min-width: ${value}) {\n`;
|
|
44
|
+
if (tresholds.static !== '')
|
|
45
|
+
css += tresholds.static.replaceAll('[breakpoint]', name);
|
|
46
|
+
if (tresholds.all !== '')
|
|
47
|
+
css += tresholds.all.replaceAll('[breakpoint]', name);
|
|
48
|
+
if (tresholds.min !== '')
|
|
49
|
+
css += tresholds.min.replaceAll('[breakpoint]', name);
|
|
50
|
+
css += `}\n`;
|
|
51
|
+
}
|
|
52
|
+
if (tresholds.max !== '' || tresholds.all !== '') {
|
|
53
|
+
css += `@media screen and (max-width: ${value}) {\n`;
|
|
54
|
+
if (tresholds.max !== '')
|
|
55
|
+
css += tresholds.max.replaceAll('[breakpoint]', name);
|
|
56
|
+
if (tresholds.all !== '')
|
|
57
|
+
css += tresholds.all.replaceAll('[breakpoint]', name);
|
|
58
|
+
css += `}\n`;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
css += tresholds._default.replaceAll('[breakpoint]', '.');
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return css;
|
|
66
|
+
};
|
|
67
|
+
const parser = (css) => {
|
|
68
|
+
const regex = /([^{]+)\{([^}]+)\}/g;
|
|
69
|
+
let match;
|
|
70
|
+
const matchesToRemove = [];
|
|
71
|
+
const extractedByType = {
|
|
72
|
+
allExtracted: [],
|
|
73
|
+
defaultExtracted: [],
|
|
74
|
+
minExtracted: [],
|
|
75
|
+
maxExtracted: [],
|
|
76
|
+
allModifierExtracted: []
|
|
77
|
+
};
|
|
78
|
+
while ((match = regex.exec(css)) !== null) {
|
|
79
|
+
const fullMatch = match[0];
|
|
80
|
+
const selectors = match[1].trim();
|
|
81
|
+
const body = match[2].trim();
|
|
82
|
+
const selectorsArray = selectors.split(',').map((sel) => sel.trim());
|
|
83
|
+
let matchedType = null;
|
|
84
|
+
if (selectorsArray.some((sel) => sel.includes('[breakpoint|min]'))) {
|
|
85
|
+
matchedType = 'minExtracted';
|
|
86
|
+
}
|
|
87
|
+
else if (selectorsArray.some((sel) => sel.includes('[breakpoint|max]'))) {
|
|
88
|
+
matchedType = 'maxExtracted';
|
|
89
|
+
}
|
|
90
|
+
else if (selectorsArray.some((sel) => sel.includes('[breakpoint|all]'))) {
|
|
91
|
+
matchedType = 'allModifierExtracted';
|
|
92
|
+
}
|
|
93
|
+
else if (selectorsArray.some((sel) => sel.includes('[breakpoint]'))) {
|
|
94
|
+
matchedType = 'defaultExtracted';
|
|
95
|
+
}
|
|
96
|
+
if (matchedType) {
|
|
97
|
+
const rule = `${selectors} {\n${body}\n}`;
|
|
98
|
+
extractedByType.allExtracted.push(rule);
|
|
99
|
+
extractedByType[matchedType].push(rule);
|
|
100
|
+
matchesToRemove.push(fullMatch);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
let cleaned = css;
|
|
104
|
+
for (const rule of matchesToRemove) {
|
|
105
|
+
cleaned = cleaned.replace(rule, '').replace(/\n{2,}/g, '\n\n');
|
|
106
|
+
}
|
|
107
|
+
return {
|
|
108
|
+
allExtracted: extractedByType.allExtracted.join('\n\n').trim(),
|
|
109
|
+
defaultExtracted: extractedByType.defaultExtracted.join('\n\n').trim(),
|
|
110
|
+
minExtracted: extractedByType.minExtracted.join('\n\n').trim(),
|
|
111
|
+
maxExtracted: extractedByType.maxExtracted.join('\n\n').trim(),
|
|
112
|
+
allModifierExtracted: extractedByType.allModifierExtracted.join('\n\n').trim(),
|
|
113
|
+
cleaned: cleaned.trim()
|
|
114
|
+
};
|
|
115
|
+
};
|
|
@@ -1,29 +1,14 @@
|
|
|
1
|
-
const
|
|
2
|
-
mobileBreakpoint: 'sm',
|
|
3
|
-
tabletBreakpoint: 'md',
|
|
4
|
-
laptopBreakpoint: 'xl',
|
|
5
|
-
thresholds: {
|
|
6
|
-
none: 0, // 0px
|
|
7
|
-
xs: '28rem', //448px
|
|
8
|
-
sm: '40rem', //640px
|
|
9
|
-
md: '48rem', //768px
|
|
10
|
-
lg: '64rem', //1024px
|
|
11
|
-
xl: '80rem', //1280px
|
|
12
|
-
'2xl': '96rem', //1536px
|
|
13
|
-
'3xl': '112rem' //1792px
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
export const devices = () => {
|
|
1
|
+
export const devices = (config) => {
|
|
17
2
|
let css = ``;
|
|
18
3
|
const list = {
|
|
19
|
-
mobile: breakpoints.mobileBreakpoint,
|
|
20
|
-
tablet: breakpoints.tabletBreakpoint,
|
|
21
|
-
laptop: breakpoints.laptopBreakpoint
|
|
4
|
+
mobile: config.breakpoints.mobileBreakpoint,
|
|
5
|
+
tablet: config.breakpoints.tabletBreakpoint,
|
|
6
|
+
laptop: config.breakpoints.laptopBreakpoint
|
|
22
7
|
};
|
|
23
8
|
for (const [key, value] of Object.entries(list)) {
|
|
24
|
-
const breakpointValue = breakpoints.thresholds[value];
|
|
9
|
+
const breakpointValue = config.breakpoints.thresholds[value];
|
|
25
10
|
const breakpointValueMax = key !== 'laptop'
|
|
26
|
-
? breakpoints.thresholds[key === 'mobile' ? list.tablet : key == 'tablet' ? list.laptop : '']
|
|
11
|
+
? config.breakpoints.thresholds[key === 'mobile' ? list.tablet : key == 'tablet' ? list.laptop : '']
|
|
27
12
|
: undefined;
|
|
28
13
|
css += `.device-${key}, .only-on-${key} {\n`;
|
|
29
14
|
css += `display: none;\n`;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export const variables = (config) => {
|
|
2
|
+
if (!config)
|
|
3
|
+
return '';
|
|
4
|
+
const { styles } = config;
|
|
5
|
+
let css = ``;
|
|
6
|
+
css += `:root {\n`;
|
|
7
|
+
css += `\t--kit-spacing: ${parser(styles.spacing)};\n`;
|
|
8
|
+
if (styles.corner.active) {
|
|
9
|
+
for (const [key, value] of Object.entries(styles.corner.radius)) {
|
|
10
|
+
css += `\t--kit-radius-${key}: ${typeof value === 'number' ? value + 'px' : value};\n`;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
for (const [key, value] of Object.entries(styles.font)) {
|
|
14
|
+
css += `\t--kit-font-family-${key}: ${parser(value)};\n`;
|
|
15
|
+
}
|
|
16
|
+
css += `}\n`;
|
|
17
|
+
return css;
|
|
18
|
+
};
|
|
19
|
+
const parser = (value) => {
|
|
20
|
+
if (typeof value === 'number')
|
|
21
|
+
return `${value}px`;
|
|
22
|
+
if (Array.isArray(value))
|
|
23
|
+
return value.join(', ');
|
|
24
|
+
return value;
|
|
25
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lapikit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"svelte": "./dist/index.js"
|
|
40
40
|
},
|
|
41
41
|
"./vite": {
|
|
42
|
-
"default": "./dist/
|
|
42
|
+
"default": "./dist/plugin/vitejs.js"
|
|
43
43
|
},
|
|
44
44
|
"./css": "./dist/styles.css"
|
|
45
45
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const processCSS: (minified?: boolean, normalize?: boolean) => Promise<void>;
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { fileURLToPath } from 'url';
|
|
2
|
-
import { dirname } from 'path';
|
|
3
|
-
import fs from 'fs';
|
|
4
|
-
import fsPromises from 'fs/promises';
|
|
5
|
-
import path from 'path';
|
|
6
|
-
import { ansi, sendConsole } from './ansi.js';
|
|
7
|
-
import { minify } from './minify.js';
|
|
8
|
-
import { colors } from './themes.js';
|
|
9
|
-
import { devices } from './devices.js';
|
|
10
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
11
|
-
const __dirname = dirname(__filename);
|
|
12
|
-
const __components = path.resolve('src/components');
|
|
13
|
-
// temps
|
|
14
|
-
const breakpoints = {
|
|
15
|
-
_default: 0,
|
|
16
|
-
desktop: 1024,
|
|
17
|
-
tablet: '768vw',
|
|
18
|
-
mobile: 480
|
|
19
|
-
};
|
|
20
|
-
export const processCSS = async (minified, normalize) => {
|
|
21
|
-
console.log(ansi.bold.blue('Processing CSS...'));
|
|
22
|
-
const _normalize = fs.readFileSync(path.resolve(__dirname, '../../styles/normalize.css'), 'utf-8');
|
|
23
|
-
const _variables = fs.readFileSync(path.resolve(__dirname, '../../styles/variables.css'), 'utf-8');
|
|
24
|
-
let styles = `${_variables}\n`;
|
|
25
|
-
if (normalize)
|
|
26
|
-
styles += `${_normalize}\n`;
|
|
27
|
-
const colorScheme = colors();
|
|
28
|
-
const deviceDisplay = devices();
|
|
29
|
-
styles += `${colorScheme.root}\n`;
|
|
30
|
-
styles += `${colorScheme.className}\n`;
|
|
31
|
-
styles += `${deviceDisplay}\n`;
|
|
32
|
-
if (fs.existsSync(__components) && fs.statSync(__components).isDirectory()) {
|
|
33
|
-
const tresholds = {
|
|
34
|
-
_default: '',
|
|
35
|
-
static: '',
|
|
36
|
-
min: '',
|
|
37
|
-
max: '',
|
|
38
|
-
all: ''
|
|
39
|
-
};
|
|
40
|
-
function loadComponentCSS(directory) {
|
|
41
|
-
fs.readdirSync(directory).forEach((File) => {
|
|
42
|
-
const absolutePath = path.join(directory, File);
|
|
43
|
-
if (fs.statSync(absolutePath).isDirectory())
|
|
44
|
-
return loadComponentCSS(absolutePath);
|
|
45
|
-
else if (absolutePath.endsWith('.css') && !absolutePath.includes('/_')) {
|
|
46
|
-
const content = parser(fs.readFileSync(absolutePath, 'utf-8'));
|
|
47
|
-
tresholds._default += content.allExtracted
|
|
48
|
-
.replaceAll('[breakpoint|min]', '[breakpoint]')
|
|
49
|
-
.replaceAll('[breakpoint|max]', '[breakpoint]')
|
|
50
|
-
.replaceAll('[breakpoint|all]', '[breakpoint]');
|
|
51
|
-
tresholds.static += content.defaultExtracted;
|
|
52
|
-
tresholds.min += content.minExtracted.replaceAll('[breakpoint|min]', '[breakpoint]');
|
|
53
|
-
tresholds.max += content.maxExtracted.replaceAll('[breakpoint|max]', '[breakpoint]');
|
|
54
|
-
tresholds.all += content.allModifierExtracted.replaceAll('[breakpoint|all]', '[breakpoint]');
|
|
55
|
-
return (styles += `${content.cleaned}\n`);
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
loadComponentCSS(path.resolve(__dirname, '../../components'));
|
|
60
|
-
for (const property in breakpoints) {
|
|
61
|
-
if (property !== '_default') {
|
|
62
|
-
const name = `.${/^\d/.test(property) ? `\\3${property}` : property}\\:`;
|
|
63
|
-
const value = typeof breakpoints[property] === 'number'
|
|
64
|
-
? `${breakpoints[property]}px`
|
|
65
|
-
: breakpoints[property];
|
|
66
|
-
if (tresholds.static !== '' || tresholds.all !== '' || tresholds.min !== '') {
|
|
67
|
-
styles += `@media screen and (min-width: ${value}) {\n`;
|
|
68
|
-
if (tresholds.static !== '')
|
|
69
|
-
styles += tresholds.static.replaceAll('[breakpoint]', name);
|
|
70
|
-
if (tresholds.all !== '')
|
|
71
|
-
styles += tresholds.all.replaceAll('[breakpoint]', name);
|
|
72
|
-
if (tresholds.min !== '')
|
|
73
|
-
styles += tresholds.min.replaceAll('[breakpoint]', name);
|
|
74
|
-
styles += `}\n`;
|
|
75
|
-
}
|
|
76
|
-
if (tresholds.max !== '' || tresholds.all !== '') {
|
|
77
|
-
styles += `@media screen and (max-width: ${value}) {\n`;
|
|
78
|
-
if (tresholds.max !== '')
|
|
79
|
-
styles += tresholds.max.replaceAll('[breakpoint]', name);
|
|
80
|
-
if (tresholds.all !== '')
|
|
81
|
-
styles += tresholds.all.replaceAll('[breakpoint]', name);
|
|
82
|
-
styles += `}\n`;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
else {
|
|
86
|
-
styles += tresholds._default.replaceAll('[breakpoint]', '.');
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
if (minified) {
|
|
91
|
-
styles = minify(styles);
|
|
92
|
-
sendConsole('success', 'css minified');
|
|
93
|
-
}
|
|
94
|
-
fsPromises.writeFile(path.resolve(__dirname, '../../styles.css'), styles);
|
|
95
|
-
};
|
|
96
|
-
const parser = (css) => {
|
|
97
|
-
const regex = /([^{]+)\{([^}]+)\}/g;
|
|
98
|
-
let match;
|
|
99
|
-
const matchesToRemove = [];
|
|
100
|
-
const extractedByType = {
|
|
101
|
-
allExtracted: [],
|
|
102
|
-
defaultExtracted: [],
|
|
103
|
-
minExtracted: [],
|
|
104
|
-
maxExtracted: [],
|
|
105
|
-
allModifierExtracted: []
|
|
106
|
-
};
|
|
107
|
-
while ((match = regex.exec(css)) !== null) {
|
|
108
|
-
const fullMatch = match[0];
|
|
109
|
-
const selectors = match[1].trim();
|
|
110
|
-
const body = match[2].trim();
|
|
111
|
-
const selectorsArray = selectors.split(',').map((sel) => sel.trim());
|
|
112
|
-
let matchedType = null;
|
|
113
|
-
if (selectorsArray.some((sel) => sel.includes('[breakpoint|min]'))) {
|
|
114
|
-
matchedType = 'minExtracted';
|
|
115
|
-
}
|
|
116
|
-
else if (selectorsArray.some((sel) => sel.includes('[breakpoint|max]'))) {
|
|
117
|
-
matchedType = 'maxExtracted';
|
|
118
|
-
}
|
|
119
|
-
else if (selectorsArray.some((sel) => sel.includes('[breakpoint|all]'))) {
|
|
120
|
-
matchedType = 'allModifierExtracted';
|
|
121
|
-
}
|
|
122
|
-
else if (selectorsArray.some((sel) => sel.includes('[breakpoint]'))) {
|
|
123
|
-
matchedType = 'defaultExtracted';
|
|
124
|
-
}
|
|
125
|
-
if (matchedType) {
|
|
126
|
-
const rule = `${selectors} {\n${body}\n}`;
|
|
127
|
-
extractedByType.allExtracted.push(rule);
|
|
128
|
-
extractedByType[matchedType].push(rule);
|
|
129
|
-
matchesToRemove.push(fullMatch);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
let cleaned = css;
|
|
133
|
-
for (const rule of matchesToRemove) {
|
|
134
|
-
cleaned = cleaned.replace(rule, '').replace(/\n{2,}/g, '\n\n');
|
|
135
|
-
}
|
|
136
|
-
return {
|
|
137
|
-
allExtracted: extractedByType.allExtracted.join('\n\n').trim(),
|
|
138
|
-
defaultExtracted: extractedByType.defaultExtracted.join('\n\n').trim(),
|
|
139
|
-
minExtracted: extractedByType.minExtracted.join('\n\n').trim(),
|
|
140
|
-
maxExtracted: extractedByType.maxExtracted.join('\n\n').trim(),
|
|
141
|
-
allModifierExtracted: extractedByType.allModifierExtracted.join('\n\n').trim(),
|
|
142
|
-
cleaned: cleaned.trim()
|
|
143
|
-
};
|
|
144
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const devices: () => string;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
import fs from 'fs';
|
|
3
|
-
import { ansi } from './ansi.js';
|
|
4
|
-
const app = process.cwd();
|
|
5
|
-
const pathConfig = path.resolve(app, 'lapikit.config.js');
|
|
6
|
-
export const importer = async () => {
|
|
7
|
-
if (!fs.existsSync(pathConfig)) {
|
|
8
|
-
console.error(ansi.color.cyan('lapikit'), ansi.bold.red('[error]'), 'config file not found\n', ansi.color.yellow('Could not find lapikit.config.js. See https://localhost/docs/kit/vite to learn more about the configuration file.'), '\n\n', ansi.color.blue('for initializing a new lapikit config, run:\n'), ' ' + ansi.variant.bold('npx lapikit init') + ' ' + ansi.bold.yellow('(preview)'), '\n\n');
|
|
9
|
-
process.exit(1);
|
|
10
|
-
}
|
|
11
|
-
const content = await import(pathConfig);
|
|
12
|
-
return content.default;
|
|
13
|
-
};
|
package/dist/server/vite.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ansi } from './modules/ansi.js';
|
|
2
|
-
import { importer } from './modules/importer.js';
|
|
3
|
-
import { processCSS } from './modules/css.js';
|
|
4
|
-
export async function lapikit(options = {}) {
|
|
5
|
-
return {
|
|
6
|
-
name: 'lapikit/vite.js',
|
|
7
|
-
async configResolved() {
|
|
8
|
-
console.log(ansi.bold.blue('Vite plugin loaded'), options);
|
|
9
|
-
const config = await importer();
|
|
10
|
-
await processCSS(options.minify, options.normalize);
|
|
11
|
-
console.log('config', config);
|
|
12
|
-
},
|
|
13
|
-
async configureServer(server) {
|
|
14
|
-
console.log(ansi.inverse.red('Vite server configured'), server);
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--kit-font-family-sans:
|
|
3
|
-
system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
4
|
-
sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
5
|
-
--kit-font-family-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
6
|
-
--kit-spacing: 0.25rem;
|
|
7
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|