jiek 0.2.1 → 0.2.2-alpha.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/bin/jiek.js +8 -1
- package/dist/base.esm.d.ts +55 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.esm.d.ts +2 -0
- package/dist/cli.esm.js +10 -0
- package/dist/cli.esm.js.map +1 -0
- package/dist/cli.esm.min.js +2 -0
- package/dist/cli.esm.min.js.map +1 -0
- package/dist/cli.iife.js +658 -0
- package/dist/cli.iife.js.map +1 -0
- package/dist/cli.iife.min.js +2 -0
- package/dist/cli.iife.min.js.map +1 -0
- package/dist/cli.umd.js +661 -0
- package/dist/cli.umd.js.map +1 -0
- package/dist/cli.umd.min.js +2 -0
- package/dist/cli.umd.min.js.map +1 -0
- package/dist/commands/build.esm.js +3 -4
- package/dist/commands/build.esm.js.map +1 -1
- package/dist/commands/build.esm.min.js +1 -1
- package/dist/commands/build.esm.min.js.map +1 -1
- package/dist/commands/init.esm.js +271 -0
- package/dist/commands/init.esm.js.map +1 -0
- package/dist/commands/init.esm.min.js +2 -0
- package/dist/commands/init.esm.min.js.map +1 -0
- package/dist/index.d.ts +56 -1
- package/dist/index.esm.d.ts +5 -1
- package/dist/index.esm.js +2 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/index.iife.js +6 -289
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.iife.min.js.map +1 -1
- package/dist/index.umd.js +6 -291
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/utils/filterSupport.esm.js +4 -15
- package/dist/utils/filterSupport.esm.js.map +1 -1
- package/dist/utils/filterSupport.esm.min.js +1 -1
- package/dist/utils/filterSupport.esm.min.js.map +1 -1
- package/dist/utils/getRoot.esm.js +14 -0
- package/dist/utils/getRoot.esm.js.map +1 -0
- package/dist/utils/getRoot.esm.min.js +2 -0
- package/dist/utils/getRoot.esm.min.js.map +1 -0
- package/dist/utils/getWD.esm.js +25 -0
- package/dist/utils/getWD.esm.js.map +1 -0
- package/dist/utils/getWD.esm.min.js +2 -0
- package/dist/utils/getWD.esm.min.js.map +1 -0
- package/dist/utils/loadConfig.esm.js +75 -0
- package/dist/utils/loadConfig.esm.js.map +1 -0
- package/dist/utils/loadConfig.esm.min.js +2 -0
- package/dist/utils/loadConfig.esm.min.js.map +1 -0
- package/dist/utils/tsRegister.esm.js +24 -0
- package/dist/utils/tsRegister.esm.js.map +1 -0
- package/dist/utils/tsRegister.esm.min.js +2 -0
- package/dist/utils/tsRegister.esm.min.js.map +1 -0
- package/package.json +14 -4
- package/bin/jiek-dev.js +0 -4
package/bin/jiek.js
CHANGED
@@ -1,2 +1,9 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
|
-
require('
|
2
|
+
const fs = require('node:fs')
|
3
|
+
const path = require('node:path')
|
4
|
+
|
5
|
+
if (fs.existsSync(path.join(__dirname, '../.jiek-dev-tag'))) {
|
6
|
+
require('esbuild-register')
|
7
|
+
require('../src/cli.ts')
|
8
|
+
} else
|
9
|
+
require('../dist/cli.umd.js')
|
@@ -0,0 +1,55 @@
|
|
1
|
+
type InitNamedFunction = (argument: string, paths: {
|
2
|
+
full: string;
|
3
|
+
relative: string;
|
4
|
+
basename?: string;
|
5
|
+
}) => [name?: string, path?: string];
|
6
|
+
type InitNamed = InitNamedFunction | {
|
7
|
+
/**
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
[key: string]: string | InitNamedFunction;
|
11
|
+
};
|
12
|
+
interface Config {
|
13
|
+
init?: {
|
14
|
+
/**
|
15
|
+
* the package.json template file path or file content
|
16
|
+
*
|
17
|
+
* if it can be parsed as json, it will be parsed
|
18
|
+
* if it is a relative file path, it will be resolved to an absolute path based on the current working directory
|
19
|
+
* if it is an absolute file path, it will be used directly
|
20
|
+
* @default '.jiek.template.package.json'
|
21
|
+
*/
|
22
|
+
template?: string;
|
23
|
+
/**
|
24
|
+
* the readme content
|
25
|
+
*
|
26
|
+
* $name will be replaced with the package name
|
27
|
+
* $license will be replaced with the license
|
28
|
+
*/
|
29
|
+
readme?: string | ((ctx: {
|
30
|
+
dir: string;
|
31
|
+
packageJson: Record<string, any>;
|
32
|
+
}) => string);
|
33
|
+
/**
|
34
|
+
* the readme template file path
|
35
|
+
* @default '.jiek.template.readme.md'
|
36
|
+
*/
|
37
|
+
readmeTemplate?: string;
|
38
|
+
bug?: {
|
39
|
+
/**
|
40
|
+
* @default 'bug_report.yml'
|
41
|
+
*/
|
42
|
+
template?: string;
|
43
|
+
/**
|
44
|
+
* @default ['bug']
|
45
|
+
*/
|
46
|
+
labels?: string[] | ((ctx: {
|
47
|
+
name: string;
|
48
|
+
dir: string;
|
49
|
+
}) => string[]);
|
50
|
+
};
|
51
|
+
named?: InitNamed;
|
52
|
+
};
|
53
|
+
}
|
54
|
+
|
55
|
+
export type { Config, InitNamed, InitNamedFunction };
|
package/dist/cli.d.ts
ADDED
package/dist/cli.esm.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
import './utils/filterSupport.esm.js';
|
2
|
+
import './commands/build.esm.js';
|
3
|
+
import './commands/init.esm.js';
|
4
|
+
import './commands/publish.esm.js';
|
5
|
+
import { program } from 'commander';
|
6
|
+
|
7
|
+
const pkg = require("../package.json");
|
8
|
+
program.version(pkg.version).description(pkg.description).option("--root <root>", "root path").option("-c, --config-path <configPath>", "config path");
|
9
|
+
program.parse(process.argv);
|
10
|
+
//# sourceMappingURL=cli.esm.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"cli.esm.js","sources":["../src/cli.ts"],"sourcesContent":["import './utils/filterSupport'\nimport './commands/build'\nimport './commands/init'\nimport './commands/publish'\n\nimport { program } from 'commander'\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst pkg = require('../package.json')\n\nprogram\n .version(pkg.version)\n .description(pkg.description)\n .option('--root <root>', 'root path')\n .option('-c, --config-path <configPath>', 'config path')\n\nprogram.parse(process.argv)\n"],"names":[],"mappings":";;;;;;AAQA,MAAM,GAAA,GAAM,QAAQ,iBAAiB,CAAA,CAAA;AAErC,OAAA,CACG,OAAQ,CAAA,GAAA,CAAI,OAAO,CAAA,CACnB,YAAY,GAAI,CAAA,WAAW,CAC3B,CAAA,MAAA,CAAO,eAAiB,EAAA,WAAW,CACnC,CAAA,MAAA,CAAO,kCAAkC,aAAa,CAAA,CAAA;AAEzD,OAAQ,CAAA,KAAA,CAAM,QAAQ,IAAI,CAAA"}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import"./utils/filterSupport.esm.min.js";import"./commands/build.esm.min.js";import"./commands/init.esm.min.js";import"./commands/publish.esm.min.js";import{program as o}from"commander";const i=require("../package.json");o.version(i.version).description(i.description).option("--root <root>","root path").option("-c, --config-path <configPath>","config path"),o.parse(process.argv);
|
2
|
+
//# sourceMappingURL=cli.esm.min.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"cli.esm.min.js","sources":["../src/cli.ts"],"sourcesContent":["import './utils/filterSupport'\nimport './commands/build'\nimport './commands/init'\nimport './commands/publish'\n\nimport { program } from 'commander'\n\n// eslint-disable-next-line @typescript-eslint/no-var-requires\nconst pkg = require('../package.json')\n\nprogram\n .version(pkg.version)\n .description(pkg.description)\n .option('--root <root>', 'root path')\n .option('-c, --config-path <configPath>', 'config path')\n\nprogram.parse(process.argv)\n"],"names":["pkg","require","program","version","description","option","parse","process","argv"],"mappings":"0LAQA,MAAMA,EAAMC,QAAQ,mBAEpBC,EACGC,QAAQH,EAAIG,SACZC,YAAYJ,EAAII,aAChBC,OAAO,gBAAiB,aACxBA,OAAO,iCAAkC,eAE5CH,EAAQI,MAAMC,QAAQC"}
|