Skip to content

Commit a58ab37

Browse files
committedMar 12, 2025··
feat: support custom format
1 parent 073a6cb commit a58ab37

34 files changed

+1140
-377
lines changed
 

‎.changeset/violet-pots-brush.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ice/pkg': major
3+
---
4+
5+
feat: support custom format

‎packages/pkg/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,13 @@
5252
"cli-spinners": "^2.9.2",
5353
"consola": "^2.15.3",
5454
"debug": "^4.3.3",
55-
"deepmerge": "^4.2.2",
5655
"es-module-lexer": "^1.3.1",
56+
"es-toolkit": "^1.32.0",
5757
"escape-string-regexp": "^5.0.0",
5858
"figures": "^6.1.0",
5959
"fs-extra": "^10.0.0",
6060
"globby": "^11.0.4",
6161
"gzip-size": "^7.0.0",
62-
"lodash.merge": "^4.6.2",
6362
"magic-string": "^0.25.7",
6463
"picocolors": "^1.0.0",
6564
"postcss": "^8.4.31",
@@ -69,12 +68,13 @@
6968
"rollup-plugin-visualizer": "^5.12.0",
7069
"semver": "^7.5.2",
7170
"tsc-alias": "^1.8.2",
72-
"typescript": "^4.9.5"
71+
"typescript": "^4.9.5",
72+
"zod": "^3.24.2",
73+
"zod-validation-error": "^3.4.0"
7374
},
7475
"devDependencies": {
7576
"@types/babel__core": "^7.1.20",
7677
"@types/fs-extra": "^9.0.13",
77-
"@types/lodash.merge": "^4.6.7",
7878
"@types/node": "^17.0.2",
7979
"cssnano": "^5.1.15",
8080
"jest": "^29.4.3",

‎packages/pkg/src/cli.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import consola from 'consola';
33
import { cac } from 'cac';
44
import { readFileSync } from 'node:fs';
55
import { join, dirname } from 'node:path';
6-
import { pkgService } from './service.js';
7-
import { getBuiltInPlugins } from './utils.js';
6+
import { createPkg } from './core/createPkg.js';
87

98
const __dirname = dirname(fileURLToPath(import.meta.url));
109

@@ -26,12 +25,13 @@ const cli = cac('ice-pkg');
2625
delete options['--'];
2726
const { rootDir, ...commandArgs } = options;
2827

29-
await pkgService.run({
28+
const pkg = await createPkg({
29+
rootDir: options.rootDir,
3030
command: 'build',
3131
commandArgs,
32-
getBuiltInPlugins,
33-
rootDir: options.rootDir,
3432
});
33+
34+
await pkg.run();
3535
});
3636

3737
cli
@@ -49,12 +49,13 @@ const cli = cac('ice-pkg');
4949
delete options['--'];
5050
const { rootDir, ...commandArgs } = options;
5151

52-
await pkgService.run({
52+
const pkg = await createPkg({
53+
rootDir: options.rootDir,
5354
command: 'start',
5455
commandArgs,
55-
getBuiltInPlugins,
56-
rootDir: options.rootDir,
5756
});
57+
58+
await pkg.run();
5859
});
5960

6061
cli.help();

‎packages/pkg/src/commands/build.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import fse from 'fs-extra';
2-
import { getBuildTasks } from '../helpers/getBuildTasks.js';
3-
import type { Context, OutputResult } from '../types.js';
2+
import type { BuildTask, Context, OutputResult } from '../types.js';
43
import { RunnerLinerTerminalReporter } from '../helpers/runnerReporter.js';
54
import { getTaskRunners } from '../helpers/getTaskRunners.js';
65
import { RunnerScheduler } from '../helpers/runnerScheduler.js';
76

87
export default async function build(context: Context) {
98
const { applyHook, commandArgs } = context;
109

11-
const buildTasks = getBuildTasks(context);
10+
const buildTasks = context.getTaskConfig() as BuildTask[];
1211
const taskConfigs = buildTasks.map(({ config }) => config);
1312

1413
await applyHook('before.build.load', {

‎packages/pkg/src/commands/start.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import consola from 'consola';
2-
import { getBuildTasks } from '../helpers/getBuildTasks.js';
32
import { createBatchChangeHandler, createWatcher } from '../helpers/watcher.js';
43
import type {
54
OutputResult,
65
Context,
7-
WatchChangedFile,
6+
WatchChangedFile, BuildTask,
87
} from '../types.js';
98
import { RunnerLinerTerminalReporter } from '../helpers/runnerReporter.js';
109
import { getTaskRunners } from '../helpers/getTaskRunners.js';
@@ -13,7 +12,7 @@ import { RunnerScheduler } from '../helpers/runnerScheduler.js';
1312
export default async function start(context: Context) {
1413
const { applyHook, commandArgs } = context;
1514

16-
const buildTasks = getBuildTasks(context);
15+
const buildTasks = context.getTaskConfig() as BuildTask[];
1716
const taskConfigs = buildTasks.map(({ config }) => config);
1817

1918
await applyHook('before.start.load', {
@@ -59,4 +58,6 @@ export default async function start(context: Context) {
5958
consola.error(error);
6059
}
6160
}
61+
62+
return watcher;
6263
}

‎packages/pkg/src/commands/test.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import { getBuildTasks } from '../helpers/getBuildTasks.js';
2-
3-
import type { Context } from '../types.js';
1+
import type { BuildTask, Context } from '../types.js';
42

53
export default async function test(context: Context) {
6-
const buildTasks = getBuildTasks(context);
4+
const buildTasks = context.getTaskConfig() as BuildTask[];
75
const taskConfigs = buildTasks.map(({ config }) => config);
86

97
return {

‎packages/pkg/src/config/schema.ts

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
import { z } from 'zod';
2+
3+
export const transformSchema = z.object({
4+
formats: z.string().array().optional(),
5+
excludes: z.union([
6+
z.string(),
7+
z.array(z.string()),
8+
]).optional(),
9+
});
10+
11+
export const bundleSchema = z.object({
12+
name: z.string().optional(),
13+
outputDir: z.string().optional(),
14+
modes: z.enum(['production', 'development']).array().optional(),
15+
formats: z.string().array().optional(),
16+
externals: z.union([
17+
z.boolean(),
18+
z.record(z.string()),
19+
]).optional(),
20+
minify: z.union([
21+
z.boolean(),
22+
z.object({
23+
js: z.union([z.boolean(), z.function()]),
24+
css: z.union([z.boolean(), z.function()]),
25+
}),
26+
]).optional(),
27+
polyfill: z.union([
28+
z.literal(false),
29+
z.enum(['entry', 'usage']),
30+
]).optional(),
31+
compileDependencies: z.union([
32+
z.boolean(),
33+
z.union([z.string(), z.instanceof(RegExp)]).array(),
34+
]).optional(),
35+
browser: z.boolean().optional(),
36+
});
37+
38+
export const userConfigSchema = z.object({
39+
entry: z.union([
40+
z.string(),
41+
z.string().array(),
42+
z.record(z.string()),
43+
]).optional(),
44+
alias: z.record(z.string()).optional(),
45+
define: z.record(z.union([
46+
z.string(),
47+
z.boolean(),
48+
z.number(),
49+
z.null(),
50+
z.record(z.any()),
51+
])).optional(),
52+
sourceMaps: z.union([
53+
z.boolean(),
54+
z.enum(['inline']),
55+
]).optional(),
56+
generateTypeForJs: z.boolean().optional(),
57+
jsxRuntime: z.enum(['classic', 'automatic']).optional(),
58+
plugins: z.any().array().optional(),
59+
60+
transform: transformSchema.optional(),
61+
bundle: bundleSchema.optional(),
62+
declaration: z.union([
63+
z.boolean(),
64+
z.object({
65+
outputMode: z.enum(['multi', 'unique']).optional(),
66+
}),
67+
]),
68+
});
69+
70+
export type UserConfig = z.infer<typeof userConfigSchema>;

0 commit comments

Comments
 (0)