clientnode 3.0.1333 → 3.0.1335
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/Logger.d.ts +1 -1
- package/dist/context.d.ts +1 -1
- package/dist/filesystem.d.ts +5 -5
- package/dist/scope.d.ts +23 -12
- package/dist/test-helper.d.ts +1 -1
- package/package.json +3 -3
package/dist/Logger.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LoggerOptions, Mapping } from './type';
|
|
2
2
|
export declare const LEVELS: readonly ["error", "critical", "warn", "info", "debug"];
|
|
3
|
-
export declare const LEVELS_COLOR:
|
|
3
|
+
export declare const LEVELS_COLOR: ("\u001B[0;34m" | "\u001B[32m" | "\u001B[35m" | "\u001B[31m" | "\u001B[33m")[];
|
|
4
4
|
export type Level = typeof LEVELS[number];
|
|
5
5
|
/**
|
|
6
6
|
* This plugin provides such interface logic like generic controller logic for
|
package/dist/context.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare const determineGlobalContext: (() => $Global);
|
|
|
3
3
|
export declare let globalContext: $Global;
|
|
4
4
|
export declare const setGlobalContext: (context: $Global) => void;
|
|
5
5
|
export declare const determine$: (() => $TStatic);
|
|
6
|
-
export declare let $:
|
|
6
|
+
export declare let $: JQueryStatic;
|
|
7
7
|
export declare const MAXIMAL_NUMBER_OF_ITERATIONS: {
|
|
8
8
|
value: number;
|
|
9
9
|
};
|
package/dist/filesystem.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AnyFunction, Encoding, File, FileTraverseResult } from './type';
|
|
2
2
|
import { ObjectEncodingOptions } from 'node:fs';
|
|
3
|
-
export declare const mkdirSync:
|
|
3
|
+
export declare const mkdirSync: typeof import("fs").mkdirSync | null, readdirSync: typeof import("fs").readdirSync | null, readFileSync: typeof import("fs").readFileSync | null, statSync: import("fs").StatSyncFn | null, writeFileSync: typeof import("fs").writeFileSync | null;
|
|
4
4
|
/**
|
|
5
5
|
* Copies given source directory via path to given target directory location
|
|
6
6
|
* with same target name as source file has or copy to given complete target
|
|
@@ -17,7 +17,7 @@ export declare const copyDirectoryRecursive: (sourcePath: string, targetPath: st
|
|
|
17
17
|
encoding: null;
|
|
18
18
|
flag: string;
|
|
19
19
|
}, writeOptions?: {
|
|
20
|
-
encoding:
|
|
20
|
+
encoding: Encoding;
|
|
21
21
|
flag: string;
|
|
22
22
|
mode: number;
|
|
23
23
|
}) => Promise<string>;
|
|
@@ -37,7 +37,7 @@ export declare const copyDirectoryRecursiveSync: (sourcePath: string, targetPath
|
|
|
37
37
|
encoding: null;
|
|
38
38
|
flag: string;
|
|
39
39
|
}, writeOptions?: {
|
|
40
|
-
encoding:
|
|
40
|
+
encoding: Encoding;
|
|
41
41
|
flag: string;
|
|
42
42
|
mode: number;
|
|
43
43
|
}) => string;
|
|
@@ -55,7 +55,7 @@ export declare const copyFile: (sourcePath: string, targetPath: string, readOpti
|
|
|
55
55
|
encoding: null;
|
|
56
56
|
flag: string;
|
|
57
57
|
}, writeOptions?: {
|
|
58
|
-
encoding:
|
|
58
|
+
encoding: Encoding;
|
|
59
59
|
flag: string;
|
|
60
60
|
mode: number;
|
|
61
61
|
}) => Promise<string>;
|
|
@@ -73,7 +73,7 @@ export declare const copyFileSync: (sourcePath: string, targetPath: string, read
|
|
|
73
73
|
encoding: null;
|
|
74
74
|
flag: string;
|
|
75
75
|
}, writeOptions?: {
|
|
76
|
-
encoding:
|
|
76
|
+
encoding: Encoding;
|
|
77
77
|
flag: string;
|
|
78
78
|
mode: number;
|
|
79
79
|
}) => string;
|
package/dist/scope.d.ts
CHANGED
|
@@ -1,19 +1,30 @@
|
|
|
1
1
|
import { Mapping } from './type';
|
|
2
|
+
import * as array from './array';
|
|
3
|
+
import * as datetime from './datetime';
|
|
4
|
+
import * as filesystem from './filesystem';
|
|
5
|
+
import * as functions from './function';
|
|
6
|
+
import * as indicators from './indicators';
|
|
7
|
+
import * as logger from './Logger';
|
|
8
|
+
import * as number from './number';
|
|
9
|
+
import * as object from './object';
|
|
10
|
+
import * as require from './require';
|
|
11
|
+
import * as string from './string';
|
|
12
|
+
import * as utility from './utility';
|
|
2
13
|
export declare const UTILITY_SCOPE: {
|
|
3
|
-
readonly array:
|
|
4
|
-
readonly datetime:
|
|
5
|
-
readonly filesystem:
|
|
6
|
-
readonly functions:
|
|
7
|
-
readonly indicators:
|
|
8
|
-
readonly logger:
|
|
9
|
-
readonly number:
|
|
10
|
-
readonly object:
|
|
11
|
-
readonly require:
|
|
12
|
-
readonly string:
|
|
13
|
-
readonly utility:
|
|
14
|
+
readonly array: typeof array;
|
|
15
|
+
readonly datetime: typeof datetime;
|
|
16
|
+
readonly filesystem: typeof filesystem;
|
|
17
|
+
readonly functions: typeof functions;
|
|
18
|
+
readonly indicators: typeof indicators;
|
|
19
|
+
readonly logger: typeof logger;
|
|
20
|
+
readonly number: typeof number;
|
|
21
|
+
readonly object: typeof object;
|
|
22
|
+
readonly require: typeof require;
|
|
23
|
+
readonly string: typeof string;
|
|
24
|
+
readonly utility: typeof utility;
|
|
14
25
|
};
|
|
15
26
|
export declare const UTILITY_SCOPE_NAMES: readonly ["array", "datetime", "filesystem", "functions", "indicators", "logger", "number", "object", "require", "string", "utility"];
|
|
16
|
-
export declare const UTILITY_SCOPE_VALUES: readonly [
|
|
27
|
+
export declare const UTILITY_SCOPE_VALUES: readonly [typeof array, typeof datetime, typeof filesystem, typeof functions, typeof indicators, typeof logger, typeof number, typeof object, typeof require, typeof string, typeof utility];
|
|
17
28
|
/**
|
|
18
29
|
* Overwrites all inherited variables from parent scope with "undefined".
|
|
19
30
|
* @param scope - A scope where inherited names will be removed.
|
package/dist/test-helper.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnyFunction, FirstParameter, FunctionTestTuple, FunctionTestPromiseTuple, FunctionTestPromiseRejectionTuple, TestMatchers as Matchers, TestSymbol, ThenParameter } from './type';
|
|
1
|
+
import { AnyFunction, FirstParameter, FunctionTestTuple, FunctionTestPromiseTuple, FunctionTestPromiseRejectionTuple, TestMatchers as Matchers, TestSymbol, ThenParameter, UnknownFunction } from './type';
|
|
2
2
|
export declare const TEST_DEFINED_SYMBOL: unique symbol;
|
|
3
3
|
export declare const TEST_THROW_SYMBOL: unique symbol;
|
|
4
4
|
export declare const TEST_UNDEFINED_SYMBOL: unique symbol;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clientnode",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1335",
|
|
4
4
|
"description": "upgrade to object orientated rock solid plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"prop-types": "^15.8.1",
|
|
99
99
|
"rimraf": "^6.1.2",
|
|
100
100
|
"typescript-eslint": "^8.48.1",
|
|
101
|
-
"weboptimizer": "^2.0.
|
|
101
|
+
"weboptimizer": "^2.0.1630",
|
|
102
102
|
"webpack-dev-server": "^5.2.2"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
@@ -263,5 +263,5 @@
|
|
|
263
263
|
}
|
|
264
264
|
}
|
|
265
265
|
},
|
|
266
|
-
"packageManager": "yarn@4.
|
|
266
|
+
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
|
|
267
267
|
}
|