@hot-updater/plugin-core 0.12.7 → 0.13.0
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/banner.d.ts +3 -0
- package/dist/copyDirToTmp.d.ts +1 -1
- package/dist/createDatabasePlugin.d.ts +44 -0
- package/dist/createZip.d.ts +5 -0
- package/dist/index.cjs +84871 -60
- package/dist/index.cjs.LICENSE.txt +48 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +84410 -62
- package/dist/index.js.LICENSE.txt +48 -0
- package/dist/loadConfig.d.ts +9 -5
- package/dist/makeEnv.d.ts +6 -0
- package/dist/transformEnv.d.ts +1 -0
- package/dist/transformEnv.spec.d.ts +1 -0
- package/dist/transformTemplate.d.ts +15 -0
- package/dist/transformTsEnv.d.ts +1 -0
- package/dist/transformTsEnv.spec.d.ts +1 -0
- package/dist/{types.d.ts → types/index.d.ts} +21 -4
- package/dist/types/utils.d.ts +12 -0
- package/package.json +26 -6
- package/LICENSE +0 -21
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* buildToken
|
|
3
|
+
* Builds OAuth token prefix (helper function)
|
|
4
|
+
*
|
|
5
|
+
* @name buildToken
|
|
6
|
+
* @function
|
|
7
|
+
* @param {GitUrl} obj The parsed Git url object.
|
|
8
|
+
* @return {String} token prefix
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/*!
|
|
12
|
+
* fill-range <https://github.com/jonschlinkert/fill-range>
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
15
|
+
* Licensed under the MIT License.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/*!
|
|
19
|
+
* is-extglob <https://github.com/jonschlinkert/is-extglob>
|
|
20
|
+
*
|
|
21
|
+
* Copyright (c) 2014-2016, Jon Schlinkert.
|
|
22
|
+
* Licensed under the MIT License.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/*!
|
|
26
|
+
* is-glob <https://github.com/jonschlinkert/is-glob>
|
|
27
|
+
*
|
|
28
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
29
|
+
* Released under the MIT License.
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
/*!
|
|
33
|
+
* is-number <https://github.com/jonschlinkert/is-number>
|
|
34
|
+
*
|
|
35
|
+
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
36
|
+
* Released under the MIT License.
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/*!
|
|
40
|
+
* to-regex-range <https://github.com/micromatch/to-regex-range>
|
|
41
|
+
*
|
|
42
|
+
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
43
|
+
* Released under the MIT License.
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
/*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
47
|
+
|
|
48
|
+
/*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/dist/index.d.ts
CHANGED
|
@@ -3,3 +3,10 @@ export * from "./cwd";
|
|
|
3
3
|
export * from "./loadConfig";
|
|
4
4
|
export * from "./types";
|
|
5
5
|
export * from "./copyDirToTmp";
|
|
6
|
+
export * from "./createDatabasePlugin";
|
|
7
|
+
export * from "./banner";
|
|
8
|
+
export * from "./transformTemplate";
|
|
9
|
+
export * from "./transformEnv";
|
|
10
|
+
export * from "./transformTsEnv";
|
|
11
|
+
export * from "./makeEnv";
|
|
12
|
+
export * from "./createZip";
|