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 CHANGED
@@ -74,17 +74,17 @@ export function lib(program) {
74
74
  esmate.build();
75
75
  yield executeMany([
76
76
  {
77
- name: 'esmate',
77
+ name: 'deves',
78
78
  command: 'npx tsc --watch',
79
79
  args: [],
80
80
  prefixColor: 'blue',
81
81
  },
82
- {
83
- name: 'esmate',
84
- command: 'npx tsc-alias --watch',
85
- args: [],
86
- prefixColor: 'cyan',
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("../eslint").Linter.Config<import("../eslint").Linter.RulesRecord>[];
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("../eslint").Linter.Config<import("../eslint").Linter.RulesRecord>[];
1
+ export declare function react(): import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>[];
@@ -1,4 +1,4 @@
1
- import { Linter } from '../eslint';
1
+ import { Linter } from 'eslint';
2
2
  import { defineConfig } from 'eslint/config';
3
3
  export { defineConfig };
4
4
  export declare function prettier(): Linter.Config<Linter.RulesRecord>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esmate",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "license": "MIT",
5
5
  "esmate": "lib",
6
6
  "type": "module",
@@ -1,2 +1,2 @@
1
- import { Config } from '../prettier';
1
+ import { Config } from 'prettier';
2
2
  export declare function defineConfig(configs: Config[]): Config;
@@ -6,5 +6,5 @@ interface Options {
6
6
  tailwindPreserveWhitespace?: boolean;
7
7
  tailwindPreserveDuplicates?: boolean;
8
8
  }
9
- export declare function tailwind(options: Options): import("../prettier").Config;
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 '../vite';
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 '../vite';
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("../vite").Plugin<any> | import("../vite").PluginOption[])[];
17
+ plugins: (import("vite").Plugin<any> | import("vite").PluginOption[])[];
18
18
  };
19
19
  };
20
20
  export declare function lib(): {};