taraskevizer 10.4.5 → 10.4.6

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
@@ -7,7 +7,7 @@ process.argv.splice(0, 2);
7
7
  const firstArg = process.argv[0];
8
8
  if (firstArg) {
9
9
  if (firstArg === '-v' || firstArg === '--version') {
10
- printWithPrefix("10.4.5");
10
+ printWithPrefix("10.4.6");
11
11
  process.exit(0);
12
12
  }
13
13
  if (firstArg === '-h' || firstArg === '--help') {
package/dist/config.d.ts CHANGED
@@ -80,7 +80,7 @@ export declare class TaraskConfig {
80
80
  /**
81
81
  * Placeholder for parts that should not be fixed like those enclosed in `< >`.
82
82
  *
83
- * > Not recommended to change.
83
+ * > Change only if the default value interferes with your text.
84
84
  *
85
85
  * @default " \ue0fe "
86
86
  */
@@ -5,6 +5,6 @@ export * from './replace-g';
5
5
  export * from './restore-case';
6
6
  export * from './mutating-step';
7
7
  export * from './soften';
8
- export { callableDict, copyDict } from '@/dict/lib';
8
+ export { callableDict, copyDict } from '../dict/lib';
9
9
  export type * from './types';
10
10
  export * from './pipe';
@@ -1,4 +1,4 @@
1
- import type { TaraskStep } from '@/steps/types';
1
+ import type { TaraskStep } from '../steps/types';
2
2
  /**
3
3
  * Utility function for a step that always modifies the text
4
4
  *
@@ -1,5 +1,5 @@
1
- import type { TaraskConfig } from '@/config';
2
- import type { DeepReadonly } from '@/types';
1
+ import type { TaraskConfig } from '../config';
2
+ import type { DeepReadonly } from '../types';
3
3
  export type TaraskStep<Storage extends object = object> = (context: {
4
4
  text: string;
5
5
  storage: Storage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "10.4.5",
3
+ "version": "10.4.6",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",