tcdona_unilib 1.0.11 → 1.0.12
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/.prettierrc.json +6 -0
- package/animejs.ts +13 -1
- package/ast-grep.ts +42 -0
- package/big.ts +2 -2
- package/clipboardy.ts +1 -1
- package/dayjs.ts +2 -2
- package/dotenvx.ts +15 -2
- package/eff/eff.delay.ts +21 -0
- package/eff/eff.ts +226 -0
- package/eff/effcan.ts +286 -0
- package/eff/throwable.ts +11 -0
- package/effector.ts +33 -2
- package/es-toolkit.ts +1 -7
- package/exome.ts +10 -2
- package/hono.ts +18 -2
- package/hotkeys-js.ts +3 -2
- package/idmeta.json +42 -0
- package/inquirer.ts +1 -1
- package/koka/async.ts +2 -7
- package/koka/ctx.ts +2 -9
- package/koka/err.ts +2 -9
- package/koka/gen.ts +2 -9
- package/koka/index.ts +1 -1
- package/koka/opt.ts +2 -7
- package/koka/result.ts +6 -9
- package/koka/task.ts +2 -8
- package/koka-domain.ts +13 -16
- package/koka.ts +29 -34
- package/magic-regexp.ts +28 -2
- package/marked.ts +28 -2
- package/nanoid.ts +7 -1
- package/nanostores.ts +31 -2
- package/neverthrow.ts +2 -2
- package/package.json +11 -22
- package/pathe.ts +16 -1
- package/pinyin-pro.ts +16 -2
- package/prettier.ts +20 -2
- package/staticMeta/enum.api.ts +111 -82
- package/staticMeta/err.ts +64 -0
- package/staticMeta/file.yml.ts +12 -12
- package/staticMeta/md.html2md.ts +38 -0
- package/staticMeta/md.md2html.ts +203 -0
- package/staticMeta/path.init.ts +12 -12
- package/staticMeta/string.nanoid.ts +7 -7
- package/staticMeta/url.ts +57 -54
- package/tinypool.ts +29 -2
- package/turndown.ts +1 -1
- package/vite.ts +2 -2
- package/viteplugin/md.plugin.dist.d.ts +18 -0
- package/viteplugin/md.plugin.dist.js +1133 -0
- package/viteplugin/md.plugin.ts +22 -0
- package/viteplugin/vite-env.d.ts +6 -0
- package/viteplugin/vite.config.ts +62 -0
- package/vue.ts +2 -12
- package/zod.ts +19 -2
- package/zx.ts +25 -1
- package/@ast-grep.ts +0 -18
- package/comctx.ts +0 -2
- package/hono/cors.ts +0 -1
- package/hono/logger.ts +0 -1
- package/hono/timeout.ts +0 -1
- package/staticMeta/ast.scan.ts +0 -131
- package/staticMeta/ast.ts +0 -259
- package/staticMeta/eff.delay.ts +0 -17
- package/staticMeta/eff.ts +0 -203
- package/staticMeta/iduniq.ts +0 -320
- package/staticMeta/idupdate.ts +0 -374
- package/staticMeta/pkg.json.ts +0 -138
- package/staticMeta/project.ts +0 -98
- package/staticMeta/sync.ts +0 -296
package/es-toolkit.ts
CHANGED
|
@@ -50,14 +50,12 @@ export {
|
|
|
50
50
|
zip,
|
|
51
51
|
zipObject,
|
|
52
52
|
zipWith,
|
|
53
|
-
|
|
54
53
|
debounce,
|
|
55
54
|
throttle,
|
|
56
55
|
once,
|
|
57
56
|
noop,
|
|
58
57
|
identity,
|
|
59
58
|
range,
|
|
60
|
-
|
|
61
59
|
clone,
|
|
62
60
|
cloneDeep,
|
|
63
61
|
isEqual,
|
|
@@ -70,7 +68,6 @@ export {
|
|
|
70
68
|
invert,
|
|
71
69
|
mapKeys,
|
|
72
70
|
mapValues,
|
|
73
|
-
|
|
74
71
|
camelCase,
|
|
75
72
|
capitalize,
|
|
76
73
|
kebabCase,
|
|
@@ -84,7 +81,6 @@ export {
|
|
|
84
81
|
trimEnd,
|
|
85
82
|
trimStart,
|
|
86
83
|
pad,
|
|
87
|
-
|
|
88
84
|
mean,
|
|
89
85
|
meanBy,
|
|
90
86
|
sum,
|
|
@@ -93,11 +89,9 @@ export {
|
|
|
93
89
|
clamp,
|
|
94
90
|
random,
|
|
95
91
|
randomInt,
|
|
96
|
-
|
|
97
92
|
delay,
|
|
98
93
|
timeout,
|
|
99
94
|
retry,
|
|
100
|
-
|
|
101
95
|
isNil,
|
|
102
96
|
isNull,
|
|
103
97
|
isUndefined,
|
|
@@ -109,4 +103,4 @@ export {
|
|
|
109
103
|
isSymbol,
|
|
110
104
|
isLength,
|
|
111
105
|
isTypedArray,
|
|
112
|
-
} from 'es-toolkit'
|
|
106
|
+
} from 'es-toolkit'
|
package/exome.ts
CHANGED
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
Exome,
|
|
3
|
+
addMiddleware,
|
|
4
|
+
getExomeId,
|
|
5
|
+
onAction,
|
|
6
|
+
subscribe,
|
|
7
|
+
update,
|
|
8
|
+
runMiddleware,
|
|
9
|
+
} from 'exome'
|
|
10
|
+
export type { Middleware } from 'exome'
|
package/hono.ts
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
// 导入所有需要的模块
|
|
2
|
+
import { Hono } from 'hono'
|
|
3
|
+
import { cors } from 'hono/cors'
|
|
4
|
+
import { logger } from 'hono/logger'
|
|
5
|
+
import { timeout } from 'hono/timeout'
|
|
6
|
+
|
|
7
|
+
// 导出 Hono 主类
|
|
8
|
+
export { Hono }
|
|
9
|
+
|
|
10
|
+
// 导出 hono 中间件为对象,避免命名冲突
|
|
11
|
+
export const honoMiddleware = {
|
|
12
|
+
cors,
|
|
13
|
+
logger,
|
|
14
|
+
timeout,
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// 导出类型
|
|
2
18
|
export type {
|
|
3
19
|
Env,
|
|
4
20
|
ErrorHandler,
|
|
@@ -20,4 +36,4 @@ export type {
|
|
|
20
36
|
InferRequestType,
|
|
21
37
|
InferResponseType,
|
|
22
38
|
ClientRequestOptions,
|
|
23
|
-
} from
|
|
39
|
+
} from 'hono'
|
package/hotkeys-js.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
import { default as hotkey } from 'hotkeys-js'
|
|
2
|
+
export { hotkey }
|
|
3
|
+
export type { HotkeysEvent, KeyHandler } from 'hotkeys-js'
|
package/idmeta.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedAt": "2026-01-02T15:48:35.553Z",
|
|
3
|
+
"projectRoot": "/Users/admin/Documents/tc/tcdona_unilib",
|
|
4
|
+
"totalFiles": 50,
|
|
5
|
+
"files": [
|
|
6
|
+
[
|
|
7
|
+
"/Users/admin/Documents/tc/tcdona_unilib/staticMeta/ast.scan.ts",
|
|
8
|
+
"staticMeta/ast.scan.ts",
|
|
9
|
+
true,
|
|
10
|
+
"fileId",
|
|
11
|
+
[[595, 629]],
|
|
12
|
+
[]
|
|
13
|
+
],
|
|
14
|
+
[
|
|
15
|
+
"/Users/admin/Documents/tc/tcdona_unilib/staticMeta/sync.ts",
|
|
16
|
+
"staticMeta/sync.ts",
|
|
17
|
+
true,
|
|
18
|
+
"fileId",
|
|
19
|
+
[[337, 371]],
|
|
20
|
+
[
|
|
21
|
+
"deleteFileFailed",
|
|
22
|
+
"cleanupFailed",
|
|
23
|
+
"syncEntryFailed",
|
|
24
|
+
"syncStart",
|
|
25
|
+
"syncDirectoryFailed",
|
|
26
|
+
"syncComplete",
|
|
27
|
+
"syncStatsCopied",
|
|
28
|
+
"syncStatsSkipped",
|
|
29
|
+
"syncStatsDeleted",
|
|
30
|
+
"syncStatsErrors"
|
|
31
|
+
]
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
"/Users/admin/Documents/tc/tcdona_unilib/eff/throwable.ts",
|
|
35
|
+
"eff/throwable.ts",
|
|
36
|
+
true,
|
|
37
|
+
"fileId",
|
|
38
|
+
[[116, 139]],
|
|
39
|
+
["jsonParse"]
|
|
40
|
+
]
|
|
41
|
+
]
|
|
42
|
+
}
|
package/inquirer.ts
CHANGED
package/koka/async.ts
CHANGED
package/koka/ctx.ts
CHANGED
package/koka/err.ts
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
// Error effect types and utilities from 'koka'
|
|
2
|
-
export type {
|
|
3
|
-
Err,
|
|
4
|
-
AnyErr,
|
|
5
|
-
ExtractErr,
|
|
6
|
-
ExcludeErr,
|
|
7
|
-
} from 'koka'
|
|
2
|
+
export type { Err, AnyErr, ExtractErr, ExcludeErr } from 'koka'
|
|
8
3
|
|
|
9
|
-
export {
|
|
10
|
-
Eff,
|
|
11
|
-
} from 'koka'
|
|
4
|
+
export { Eff } from 'koka'
|
package/koka/gen.ts
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
// Generator utilities and stream types from 'koka'
|
|
2
|
-
export type {
|
|
3
|
-
StreamResult,
|
|
4
|
-
StreamResults,
|
|
5
|
-
StreamHandler,
|
|
6
|
-
} from 'koka'
|
|
2
|
+
export type { StreamResult, StreamResults, StreamHandler } from 'koka'
|
|
7
3
|
|
|
8
|
-
export {
|
|
9
|
-
Eff,
|
|
10
|
-
isGenerator,
|
|
11
|
-
} from 'koka'
|
|
4
|
+
export { Eff, isGenerator } from 'koka'
|
package/koka/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Main koka re-export file - exports everything from koka
|
|
2
|
-
export * from '../koka.ts'
|
|
2
|
+
export * from '../koka.ts'
|
package/koka/opt.ts
CHANGED
package/koka/result.ts
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
// Result types and utilities from 'koka'
|
|
2
2
|
export type {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
Ok,
|
|
4
|
+
AnyOk,
|
|
5
|
+
Result as ResultType,
|
|
6
|
+
AnyResult,
|
|
7
|
+
InferOkValue,
|
|
8
8
|
} from 'koka'
|
|
9
9
|
|
|
10
|
-
export {
|
|
11
|
-
Result,
|
|
12
|
-
Eff,
|
|
13
|
-
} from 'koka'
|
|
10
|
+
export { Result, Eff } from 'koka'
|
package/koka/task.ts
CHANGED
package/koka-domain.ts
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
// Type exports from 'koka-domain'
|
|
2
2
|
export type {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
DomainErr,
|
|
4
|
+
Getter,
|
|
5
|
+
Updater,
|
|
6
|
+
Setter,
|
|
7
|
+
DomainOptions,
|
|
8
|
+
MaybeDomainEff,
|
|
9
|
+
Selector,
|
|
10
|
+
InferDomainState,
|
|
11
|
+
InferDomainRoot,
|
|
12
|
+
AnyDomain,
|
|
13
|
+
NestedArray,
|
|
14
|
+
NestedReadonlyArray,
|
|
15
15
|
} from 'koka-domain'
|
|
16
16
|
|
|
17
17
|
// Value exports from 'koka-domain'
|
|
18
|
-
export {
|
|
19
|
-
getDomainValue,
|
|
20
|
-
Domain,
|
|
21
|
-
} from 'koka-domain'
|
|
18
|
+
export { getDomainValue, Domain } from 'koka-domain'
|
package/koka.ts
CHANGED
|
@@ -1,39 +1,34 @@
|
|
|
1
1
|
// Type exports from 'koka'
|
|
2
2
|
export type {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
3
|
+
Err,
|
|
4
|
+
AnyErr,
|
|
5
|
+
Ctx,
|
|
6
|
+
Opt,
|
|
7
|
+
AnyCtx,
|
|
8
|
+
Async,
|
|
9
|
+
AnyOpt,
|
|
10
|
+
Msg,
|
|
11
|
+
AnyMsg,
|
|
12
|
+
SendMsg,
|
|
13
|
+
WaitMsg,
|
|
14
|
+
EffType,
|
|
15
|
+
AnyEff,
|
|
16
|
+
EffectHandlers,
|
|
17
|
+
ExtractErr,
|
|
18
|
+
ExcludeErr,
|
|
19
|
+
Ok,
|
|
20
|
+
AnyOk,
|
|
21
|
+
AnyResult,
|
|
22
|
+
InferOkValue,
|
|
23
|
+
Task,
|
|
24
|
+
MaybePromise,
|
|
25
|
+
MaybeFunction,
|
|
26
|
+
CtxValue,
|
|
27
|
+
MsgValue,
|
|
28
|
+
StreamResult,
|
|
29
|
+
StreamResults,
|
|
30
|
+
StreamHandler,
|
|
31
31
|
} from 'koka'
|
|
32
32
|
|
|
33
33
|
// Value exports from 'koka'
|
|
34
|
-
export {
|
|
35
|
-
EffSymbol,
|
|
36
|
-
Result,
|
|
37
|
-
Eff,
|
|
38
|
-
isGenerator
|
|
39
|
-
} from 'koka'
|
|
34
|
+
export { EffSymbol, Result, Eff, isGenerator } from 'koka'
|
package/magic-regexp.ts
CHANGED
|
@@ -1,2 +1,28 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
createRegExp,
|
|
3
|
+
exactly,
|
|
4
|
+
oneOrMore,
|
|
5
|
+
anyOf,
|
|
6
|
+
char,
|
|
7
|
+
charIn,
|
|
8
|
+
charNotIn,
|
|
9
|
+
word,
|
|
10
|
+
wordChar,
|
|
11
|
+
wordBoundary,
|
|
12
|
+
digit,
|
|
13
|
+
whitespace,
|
|
14
|
+
letter,
|
|
15
|
+
tab,
|
|
16
|
+
linefeed,
|
|
17
|
+
carriageReturn,
|
|
18
|
+
not,
|
|
19
|
+
maybe,
|
|
20
|
+
global,
|
|
21
|
+
multiline,
|
|
22
|
+
caseInsensitive,
|
|
23
|
+
sticky,
|
|
24
|
+
unicode,
|
|
25
|
+
dotAll,
|
|
26
|
+
withIndices,
|
|
27
|
+
} from 'magic-regexp'
|
|
28
|
+
export type { Input, MagicRegExp } from 'magic-regexp'
|
package/marked.ts
CHANGED
|
@@ -1,2 +1,28 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
marked,
|
|
3
|
+
Marked,
|
|
4
|
+
Lexer,
|
|
5
|
+
Parser,
|
|
6
|
+
Tokenizer,
|
|
7
|
+
Renderer,
|
|
8
|
+
TextRenderer,
|
|
9
|
+
Hooks,
|
|
10
|
+
getDefaults,
|
|
11
|
+
setOptions,
|
|
12
|
+
use,
|
|
13
|
+
parse,
|
|
14
|
+
parseInline,
|
|
15
|
+
lexer,
|
|
16
|
+
parser,
|
|
17
|
+
walkTokens,
|
|
18
|
+
} from 'marked'
|
|
19
|
+
export type {
|
|
20
|
+
Token,
|
|
21
|
+
Tokens,
|
|
22
|
+
TokensList,
|
|
23
|
+
MarkedExtension,
|
|
24
|
+
MarkedOptions,
|
|
25
|
+
RendererObject,
|
|
26
|
+
TokenizerObject,
|
|
27
|
+
TokenizerExtension,
|
|
28
|
+
} from 'marked'
|
package/nanoid.ts
CHANGED
package/nanostores.ts
CHANGED
|
@@ -1,2 +1,31 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
atom,
|
|
3
|
+
map,
|
|
4
|
+
deepMap,
|
|
5
|
+
computed,
|
|
6
|
+
onMount,
|
|
7
|
+
onSet,
|
|
8
|
+
onNotify,
|
|
9
|
+
onStart,
|
|
10
|
+
onStop,
|
|
11
|
+
listenKeys,
|
|
12
|
+
keepMount,
|
|
13
|
+
task,
|
|
14
|
+
startTask,
|
|
15
|
+
allTasks,
|
|
16
|
+
cleanTasks,
|
|
17
|
+
batched,
|
|
18
|
+
STORE_UNMOUNT_DELAY,
|
|
19
|
+
} from 'nanostores'
|
|
20
|
+
export type {
|
|
21
|
+
Atom,
|
|
22
|
+
MapStore,
|
|
23
|
+
DeepMapStore,
|
|
24
|
+
ReadableAtom,
|
|
25
|
+
WritableAtom,
|
|
26
|
+
PreinitializedWritableAtom,
|
|
27
|
+
MapStoreKeys,
|
|
28
|
+
AnyStore,
|
|
29
|
+
Store,
|
|
30
|
+
StoreValue,
|
|
31
|
+
} from 'nanostores'
|
package/neverthrow.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tcdona_unilib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "Unified dependency aggregation layer for shared libraries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
8
|
-
"./astgrep": "
|
|
9
|
-
"./
|
|
8
|
+
"./astgrep": "./ast-grep.ts",
|
|
9
|
+
"./eff/eff": "./eff/eff.ts",
|
|
10
|
+
"./eff/effcan": "./eff/effcan.ts",
|
|
11
|
+
"./eff/throwable": "./eff/throwable.ts",
|
|
12
|
+
"./staticMeta/enum.api": "./staticMeta/enum.api.ts",
|
|
10
13
|
"./staticMeta/file": "./staticMeta/file.yml.ts",
|
|
11
14
|
"./staticMeta/path": "./staticMeta/path.init.ts",
|
|
12
15
|
"./staticMeta/string": "./staticMeta/string.nanoid.ts",
|
|
13
16
|
"./staticMeta/url": "./staticMeta/url.ts",
|
|
14
|
-
"./staticMeta/
|
|
15
|
-
"./staticMeta/iduniq": "./staticMeta/iduniq.ts",
|
|
16
|
-
"./staticMeta/idupdate": "./staticMeta/idupdate.ts",
|
|
17
|
-
"./staticMeta/pkgjson": "./staticMeta/pkg.json.ts",
|
|
18
|
-
"./staticMeta/project": "./staticMeta/project.ts",
|
|
17
|
+
"./staticMeta/err": "./staticMeta/err.ts",
|
|
19
18
|
"./neverthrow": "./neverthrow.ts",
|
|
20
19
|
"./zod": "./zod.ts",
|
|
21
20
|
"./zx": "./zx.ts",
|
|
@@ -30,33 +29,24 @@
|
|
|
30
29
|
"./prettier": "./prettier.ts",
|
|
31
30
|
"./turndown": "./turndown.ts",
|
|
32
31
|
"./effector": "./effector.ts",
|
|
33
|
-
"./comctx": "./comctx.ts",
|
|
34
32
|
"./estk": "./es-toolkit.ts",
|
|
35
33
|
"./magicreg": "./magic-regexp.ts",
|
|
36
34
|
"./exome": "./exome.ts",
|
|
37
35
|
"./vue": "./vue.ts",
|
|
38
36
|
"./vite": "./vite.ts",
|
|
39
37
|
"./hono": "./hono.ts",
|
|
40
|
-
"./hono/cors": "./hono/cors.ts",
|
|
41
|
-
"./hono/logger": "./hono/logger.ts",
|
|
42
|
-
"./hono/timeout": "./hono/timeout.ts",
|
|
43
38
|
"./hotkeys": "./hotkeys-js.ts",
|
|
44
39
|
"./pinyinpro": "./pinyin-pro.ts",
|
|
45
40
|
"./tinypool": "./tinypool.ts",
|
|
46
41
|
"./dotenvx": "./dotenvx.ts",
|
|
47
42
|
"./inquirer": "./inquirer.ts",
|
|
48
43
|
"./koka": "./koka.ts",
|
|
49
|
-
"./koka
|
|
50
|
-
"./
|
|
51
|
-
"./
|
|
52
|
-
"./koka/async": "./koka/async.ts",
|
|
53
|
-
"./koka/result": "./koka/result.ts",
|
|
54
|
-
"./koka/task": "./koka/task.ts",
|
|
55
|
-
"./koka/gen": "./koka/gen.ts",
|
|
56
|
-
"./koka-domain": "./koka-domain.ts"
|
|
44
|
+
"./koka-domain": "./koka-domain.ts",
|
|
45
|
+
"./viteplugin/*.js": "./viteplugin/*.js",
|
|
46
|
+
"./viteplugin/*.ts": "./viteplugin/*.ts"
|
|
57
47
|
},
|
|
58
48
|
"scripts": {
|
|
59
|
-
"
|
|
49
|
+
"viteplugin": "vite build -c viteplugin/vite.config.ts",
|
|
60
50
|
"pub": "bun run ./tc.pub.ts"
|
|
61
51
|
},
|
|
62
52
|
"keywords": [],
|
|
@@ -76,7 +66,6 @@
|
|
|
76
66
|
"animejs": "^4.1.3",
|
|
77
67
|
"big.js": "^7.0.1",
|
|
78
68
|
"clipboardy": "^5.0.2",
|
|
79
|
-
"comctx": "^1.4.3",
|
|
80
69
|
"dayjs": "^1.11.19",
|
|
81
70
|
"effector": "^23.4.4",
|
|
82
71
|
"es-toolkit": "^1.43.0",
|
package/pathe.ts
CHANGED
|
@@ -1 +1,16 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {
|
|
2
|
+
basename,
|
|
3
|
+
delimiter,
|
|
4
|
+
dirname,
|
|
5
|
+
extname,
|
|
6
|
+
format,
|
|
7
|
+
isAbsolute,
|
|
8
|
+
join,
|
|
9
|
+
normalize,
|
|
10
|
+
normalizeString,
|
|
11
|
+
parse,
|
|
12
|
+
relative,
|
|
13
|
+
resolve,
|
|
14
|
+
sep,
|
|
15
|
+
toNamespacedPath,
|
|
16
|
+
} from 'pathe'
|
package/pinyin-pro.ts
CHANGED
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
getInitialAndFinal,
|
|
3
|
+
getFinalParts,
|
|
4
|
+
getNumOfTone,
|
|
5
|
+
pinyin,
|
|
6
|
+
customPinyin,
|
|
7
|
+
clearCustomDict,
|
|
8
|
+
addDict,
|
|
9
|
+
removeDict,
|
|
10
|
+
match,
|
|
11
|
+
html,
|
|
12
|
+
polyphonic,
|
|
13
|
+
convert,
|
|
14
|
+
segment,
|
|
15
|
+
} from 'pinyin-pro'
|
|
16
|
+
export type { OutputFormat } from 'pinyin-pro'
|
package/prettier.ts
CHANGED
|
@@ -1,2 +1,20 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
1
|
+
export {
|
|
2
|
+
format,
|
|
3
|
+
formatWithCursor,
|
|
4
|
+
check,
|
|
5
|
+
resolveConfig,
|
|
6
|
+
resolveConfigFile,
|
|
7
|
+
clearConfigCache,
|
|
8
|
+
getFileInfo,
|
|
9
|
+
getSupportInfo,
|
|
10
|
+
doc,
|
|
11
|
+
version,
|
|
12
|
+
} from 'prettier'
|
|
13
|
+
export type {
|
|
14
|
+
Options,
|
|
15
|
+
Plugin,
|
|
16
|
+
Printer,
|
|
17
|
+
Parser,
|
|
18
|
+
SupportLanguage,
|
|
19
|
+
SupportOption,
|
|
20
|
+
} from 'prettier'
|