taraskevizer 10.0.0-alpha.0 → 10.0.0-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/dist/bin.js +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
- package/dist/constants.d.ts +0 -29
- package/dist/constants.js +0 -12
package/dist/bin.js
CHANGED
|
@@ -6,7 +6,7 @@ const printWithPrefix = (msg) => {
|
|
|
6
6
|
process.argv.splice(0, 2);
|
|
7
7
|
const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
|
|
8
8
|
if (checkForOptions(['-v', '--version'])) {
|
|
9
|
-
printWithPrefix("10.0.0-alpha.
|
|
9
|
+
printWithPrefix("10.0.0-alpha.1");
|
|
10
10
|
process.exit(0);
|
|
11
11
|
}
|
|
12
12
|
if (checkForOptions(['-h', '--help'])) {
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/dist/constants.d.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { OptionJ, Variation } from './config';
|
|
2
|
-
/**
|
|
3
|
-
* @deprecated since 9.1.0. Will be removed in 10.0.0
|
|
4
|
-
*
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* // deprecated
|
|
8
|
-
* j: REPLACE_J.NEVER
|
|
9
|
-
* // use this instead
|
|
10
|
-
* j: "never"
|
|
11
|
-
* }
|
|
12
|
-
*/
|
|
13
|
-
export declare const REPLACE_J: {
|
|
14
|
-
[P in Uppercase<OptionJ>]: Lowercase<P>;
|
|
15
|
-
};
|
|
16
|
-
/**
|
|
17
|
-
* @deprecated since 9.1.0. Will be removed in 10.0.0
|
|
18
|
-
*
|
|
19
|
-
* @example
|
|
20
|
-
* {
|
|
21
|
-
* // deprecated
|
|
22
|
-
* variations: VARIATION.NO
|
|
23
|
-
* // use this instead
|
|
24
|
-
* variations: "no"
|
|
25
|
-
* }
|
|
26
|
-
*/
|
|
27
|
-
export declare const VARIATION: {
|
|
28
|
-
[P in Uppercase<Variation>]: Lowercase<P>;
|
|
29
|
-
};
|