tsl-dx 0.10.2 → 0.10.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -5
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as tsl from "tsl";
1
+ import * as _$tsl from "tsl";
2
2
 
3
3
  //#region src/rules/no-duplicate-exports.d.ts
4
4
  /**
@@ -17,7 +17,7 @@ import * as tsl from "tsl";
17
17
  * export { A, B } from 'module';
18
18
  * ```
19
19
  */
20
- declare const noDuplicateExports: (options?: "off" | undefined) => tsl.Rule<unknown>;
20
+ declare const noDuplicateExports: (options?: "off" | undefined) => _$tsl.Rule<unknown>;
21
21
  //#endregion
22
22
  //#region src/rules/no-duplicate-imports.d.ts
23
23
  /**
@@ -36,7 +36,7 @@ declare const noDuplicateExports: (options?: "off" | undefined) => tsl.Rule<unkn
36
36
  * import { A, B } from 'module';
37
37
  * ```
38
38
  */
39
- declare const noDuplicateImports: (options?: "off" | undefined) => tsl.Rule<unknown>;
39
+ declare const noDuplicateImports: (options?: "off" | undefined) => _$tsl.Rule<unknown>;
40
40
  //#endregion
41
41
  //#region src/rules/no-multiline-template-expression-without-auto-dedent.d.ts
42
42
  type noMultilineTemplateExpressionWithoutAutoDedentOptions = {
@@ -65,7 +65,7 @@ type noMultilineTemplateExpressionWithoutAutoDedentOptions = {
65
65
  * `;
66
66
  * ```
67
67
  */
68
- declare const noMultilineTemplateExpressionWithoutAutoDedent: (options?: "off" | noMultilineTemplateExpressionWithoutAutoDedentOptions | undefined) => tsl.Rule<unknown>;
68
+ declare const noMultilineTemplateExpressionWithoutAutoDedent: (options?: "off" | noMultilineTemplateExpressionWithoutAutoDedentOptions | undefined) => _$tsl.Rule<unknown>;
69
69
  //#endregion
70
70
  //#region src/rules/nullish.d.ts
71
71
  type nullishOptions = {
@@ -88,6 +88,6 @@ type nullishOptions = {
88
88
  * if (x == null) { }
89
89
  * ```
90
90
  */
91
- declare const nullish: (options?: nullishOptions | "off" | undefined) => tsl.Rule<unknown>;
91
+ declare const nullish: (options?: nullishOptions | "off" | undefined) => _$tsl.Rule<unknown>;
92
92
  //#endregion
93
93
  export { noDuplicateExports, noDuplicateImports, noMultilineTemplateExpressionWithoutAutoDedent, nullish };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsl-dx",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "A tsl plugin for better JavaScript/TypeScript DX.",
5
5
  "keywords": [
6
6
  "tsl",
@@ -26,9 +26,9 @@
26
26
  "devDependencies": {
27
27
  "@liautaud/typezod": "^2.0.0",
28
28
  "dedent": "^1.7.2",
29
- "tsdown": "^0.21.4",
30
- "tsl": "^1.0.29",
31
- "vitest": "^4.1.0",
29
+ "tsdown": "^0.21.7",
30
+ "tsl": "^1.0.30",
31
+ "vitest": "^4.1.2",
32
32
  "@local/configs": "0.0.0",
33
33
  "@local/eff": "0.2.9"
34
34
  },