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 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.0");
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
@@ -3,5 +3,4 @@ export * from './config';
3
3
  export * as steps from './steps';
4
4
  export * as pipelines from './pipelines';
5
5
  export * as lib from './lib';
6
- export * from './constants';
7
6
  export * as wrappers from './wrappers';
package/dist/index.js CHANGED
@@ -3,5 +3,4 @@ export * from './config.js';
3
3
  export * as steps from './steps/index.js';
4
4
  export * as pipelines from './pipelines.js';
5
5
  export * as lib from './lib/index.js';
6
- export * from './constants.js';
7
6
  export * as wrappers from './wrappers.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "10.0.0-alpha.0",
3
+ "version": "10.0.0-alpha.1",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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
- };
package/dist/constants.js DELETED
@@ -1,12 +0,0 @@
1
-
2
- export const REPLACE_J = {
3
- NEVER: 'never',
4
- RANDOM: 'random',
5
- ALWAYS: 'always',
6
- };
7
-
8
- export const VARIATION = {
9
- NO: 'no',
10
- FIRST: 'first',
11
- ALL: 'all',
12
- };