esmate 0.0.7 → 0.0.9
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/cli/modes.js +7 -7
- package/eslint/node.d.ts +1 -1
- package/eslint/react.d.ts +1 -1
- package/eslint/shared.d.ts +1 -1
- package/package.json +1 -1
- package/prettier/shared.d.ts +1 -1
- package/prettier/tailwind.d.ts +1 -1
- package/vite/index.d.ts +1 -1
- package/vite/index.js +1 -1
- package/vite/react.d.ts +1 -1
package/cli/modes.js
CHANGED
|
@@ -74,17 +74,17 @@ export function lib(program) {
|
|
|
74
74
|
esmate.build();
|
|
75
75
|
yield executeMany([
|
|
76
76
|
{
|
|
77
|
-
name: '
|
|
77
|
+
name: 'deves',
|
|
78
78
|
command: 'npx tsc --watch',
|
|
79
79
|
args: [],
|
|
80
80
|
prefixColor: 'blue',
|
|
81
81
|
},
|
|
82
|
-
{
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
},
|
|
82
|
+
// {
|
|
83
|
+
// name: 'deves',
|
|
84
|
+
// command: 'npx tsc-alias --watch',
|
|
85
|
+
// args: [],
|
|
86
|
+
// prefixColor: 'cyan',
|
|
87
|
+
// },
|
|
88
88
|
]);
|
|
89
89
|
// https://www.npmjs.com/package/glob-watcher
|
|
90
90
|
// watch files to fix and format
|
package/eslint/node.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function node(): import("
|
|
1
|
+
export declare function node(): import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
|
package/eslint/react.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function react(): import("
|
|
1
|
+
export declare function react(): import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
|
package/eslint/shared.d.ts
CHANGED
package/package.json
CHANGED
package/prettier/shared.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Config } from '
|
|
1
|
+
import { Config } from 'prettier';
|
|
2
2
|
export declare function defineConfig(configs: Config[]): Config;
|
package/prettier/tailwind.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ interface Options {
|
|
|
6
6
|
tailwindPreserveWhitespace?: boolean;
|
|
7
7
|
tailwindPreserveDuplicates?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare function tailwind(options: Options): import("
|
|
9
|
+
export declare function tailwind(options: Options): import("prettier").Config;
|
|
10
10
|
export {};
|
package/vite/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { defineConfig } from '
|
|
1
|
+
export { defineConfig } from 'vite';
|
|
2
2
|
export * as react from './react.js';
|
package/vite/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { defineConfig } from '
|
|
1
|
+
export { defineConfig } from 'vite';
|
|
2
2
|
export * as react from './react.js';
|
package/vite/react.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare function spa(options?: SpaOptions): {
|
|
|
14
14
|
build: {
|
|
15
15
|
outDir: string;
|
|
16
16
|
};
|
|
17
|
-
plugins: (import("
|
|
17
|
+
plugins: (import("vite").Plugin<any> | import("vite").PluginOption[])[];
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
export declare function lib(): {};
|