jiek 1.0.0 → 1.0.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.
- package/LICENSE +21 -0
- package/README.md +26 -0
- package/bin/jiek.js +13 -0
- package/dist/cli.cjs +5041 -0
- package/dist/cli.d.cts +112 -0
- package/dist/cli.d.ts +112 -0
- package/dist/cli.js +5010 -0
- package/dist/cli.min.cjs +19 -0
- package/dist/cli.min.js +19 -0
- package/dist/index.cjs +5 -0
- package/dist/index.d.cts +73 -0
- package/dist/index.d.ts +73 -0
- package/dist/index.js +3 -0
- package/dist/index.min.cjs +1 -0
- package/dist/index.min.js +1 -0
- package/dist/rollup/index.cjs +4688 -0
- package/dist/rollup/index.d.cts +53 -0
- package/dist/rollup/index.d.ts +53 -0
- package/dist/rollup/index.js +4673 -0
- package/dist/rollup/index.min.cjs +19 -0
- package/dist/rollup/index.min.js +19 -0
- package/package.json +89 -4
- package/src/cli.ts +9 -0
- package/src/commands/base.ts +8 -0
- package/src/commands/build.ts +158 -0
- package/src/commands/init.ts +373 -0
- package/src/commands/publish.ts +171 -0
- package/src/index.ts +8 -0
- package/src/inner.ts +11 -0
- package/src/merge-package-json.ts +75 -0
- package/src/rollup/base.ts +72 -0
- package/src/rollup/index.ts +422 -0
- package/src/rollup/plugins/globals.ts +34 -0
- package/src/rollup/plugins/progress.ts +26 -0
- package/src/rollup/plugins/skip.ts +23 -0
- package/src/rollup/utils/commonOptions.ts +9 -0
- package/src/rollup/utils/externalResolver.ts +21 -0
- package/src/rollup/utils/globalResolver.ts +13 -0
- package/src/rollup/utils/withMinify.ts +18 -0
- package/src/utils/filterSupport.ts +84 -0
- package/src/utils/getExports.ts +104 -0
- package/src/utils/getRoot.ts +16 -0
- package/src/utils/getWD.ts +31 -0
- package/src/utils/loadConfig.ts +93 -0
- package/src/utils/tsRegister.ts +26 -0
- package/index.js +0 -1
@@ -0,0 +1,53 @@
|
|
1
|
+
import { OutputOptions, RollupOptions } from 'rollup';
|
2
|
+
|
3
|
+
type Mapping2ROO<K extends keyof OutputOptions> = OutputOptions[K] | {
|
4
|
+
js?: OutputOptions[K];
|
5
|
+
dts?: OutputOptions[K];
|
6
|
+
};
|
7
|
+
interface TemplateOptions {
|
8
|
+
/**
|
9
|
+
* When the user configures type: module, the generated output from entry points that don't
|
10
|
+
* have cts as a suffix will automatically include the CJS version.
|
11
|
+
* if it is not configured, and the generated output from entry points that do not have mts
|
12
|
+
* as a suffix will automatically include the ESM version.
|
13
|
+
*
|
14
|
+
* @default true
|
15
|
+
*/
|
16
|
+
crossModuleConvertor?: boolean;
|
17
|
+
output?: {
|
18
|
+
/**
|
19
|
+
* @default true
|
20
|
+
*
|
21
|
+
* When minify is set to true, the output will with minified files.
|
22
|
+
* When minify is set to 'only-minify', the output will direct output minified files.
|
23
|
+
*/
|
24
|
+
minify?: boolean | 'only-minify';
|
25
|
+
/**
|
26
|
+
* @default 'dist'
|
27
|
+
*/
|
28
|
+
dir?: Mapping2ROO<'dir'>;
|
29
|
+
sourcemap?: Mapping2ROO<'sourcemap'>;
|
30
|
+
strict?: Mapping2ROO<'strict'>;
|
31
|
+
};
|
32
|
+
}
|
33
|
+
declare module 'jiek' {
|
34
|
+
interface Config {
|
35
|
+
build?: TemplateOptions & {
|
36
|
+
/**
|
37
|
+
* Whether to run in silent mode, only active when configured in the workspace root or cwd.
|
38
|
+
*
|
39
|
+
* @default false
|
40
|
+
*/
|
41
|
+
silent?: boolean;
|
42
|
+
};
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
interface PackageJSON {
|
47
|
+
name?: string;
|
48
|
+
type?: string;
|
49
|
+
exports?: Record<string, unknown> | string | string[];
|
50
|
+
}
|
51
|
+
declare function template(packageJSON: PackageJSON): RollupOptions[];
|
52
|
+
|
53
|
+
export { template };
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import { OutputOptions, RollupOptions } from 'rollup';
|
2
|
+
|
3
|
+
type Mapping2ROO<K extends keyof OutputOptions> = OutputOptions[K] | {
|
4
|
+
js?: OutputOptions[K];
|
5
|
+
dts?: OutputOptions[K];
|
6
|
+
};
|
7
|
+
interface TemplateOptions {
|
8
|
+
/**
|
9
|
+
* When the user configures type: module, the generated output from entry points that don't
|
10
|
+
* have cts as a suffix will automatically include the CJS version.
|
11
|
+
* if it is not configured, and the generated output from entry points that do not have mts
|
12
|
+
* as a suffix will automatically include the ESM version.
|
13
|
+
*
|
14
|
+
* @default true
|
15
|
+
*/
|
16
|
+
crossModuleConvertor?: boolean;
|
17
|
+
output?: {
|
18
|
+
/**
|
19
|
+
* @default true
|
20
|
+
*
|
21
|
+
* When minify is set to true, the output will with minified files.
|
22
|
+
* When minify is set to 'only-minify', the output will direct output minified files.
|
23
|
+
*/
|
24
|
+
minify?: boolean | 'only-minify';
|
25
|
+
/**
|
26
|
+
* @default 'dist'
|
27
|
+
*/
|
28
|
+
dir?: Mapping2ROO<'dir'>;
|
29
|
+
sourcemap?: Mapping2ROO<'sourcemap'>;
|
30
|
+
strict?: Mapping2ROO<'strict'>;
|
31
|
+
};
|
32
|
+
}
|
33
|
+
declare module 'jiek' {
|
34
|
+
interface Config {
|
35
|
+
build?: TemplateOptions & {
|
36
|
+
/**
|
37
|
+
* Whether to run in silent mode, only active when configured in the workspace root or cwd.
|
38
|
+
*
|
39
|
+
* @default false
|
40
|
+
*/
|
41
|
+
silent?: boolean;
|
42
|
+
};
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
interface PackageJSON {
|
47
|
+
name?: string;
|
48
|
+
type?: string;
|
49
|
+
exports?: Record<string, unknown> | string | string[];
|
50
|
+
}
|
51
|
+
declare function template(packageJSON: PackageJSON): RollupOptions[];
|
52
|
+
|
53
|
+
export { template };
|