@zetavg/babel-config 0.0.5-pre.4 → 0.0.8-pre.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.
@@ -1,4 +1,5 @@
1
+ import * as configs from './configs/index.js';
1
2
  import * as constants from './constants/index.js';
2
3
  import * as ignores from './ignores/index.js';
3
4
  import * as presets from './presets/index.js';
4
- export { constants, ignores, presets };
5
+ export { configs, constants, ignores, presets };
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
+ import * as configs from './configs/index.js';
1
2
  import * as constants from './constants/index.js';
2
3
  import * as ignores from './ignores/index.js';
3
4
  import * as presets from './presets/index.js';
4
5
 
5
- export { constants, ignores, presets };
6
+ export { configs, constants, ignores, presets };
package/package.json CHANGED
@@ -38,12 +38,12 @@
38
38
  "tsconfig-paths": "^4"
39
39
  },
40
40
  "devDependencies": {
41
- "@zetavg/eslint-config": "^0.0.5-pre.4",
42
- "@zetavg/prettier-config": "^0.0.5-pre.4",
43
- "@zetavg/tsconfig": "^0.0.5-pre.4",
41
+ "@zetavg/eslint-config": "^0.0.8-pre.1",
42
+ "@zetavg/prettier-config": "^0.0.8-pre.1",
43
+ "@zetavg/tsconfig": "^0.0.8-pre.1",
44
44
  "eslint": "^10",
45
45
  "prettier": "^3",
46
46
  "typescript": "~5.8"
47
47
  },
48
- "version": "0.0.5-pre.4"
48
+ "version": "0.0.8-pre.1"
49
49
  }
package/eslint.config.mjs DELETED
@@ -1,5 +0,0 @@
1
- import { defineConfig } from 'eslint/config';
2
-
3
- import config from '@zetavg/eslint-config';
4
-
5
- export default defineConfig([config]);
@@ -1,10 +0,0 @@
1
- import defaultConfig from '@zetavg/prettier-config';
2
-
3
- /**
4
- * @type {import("prettier").Config}
5
- */
6
- const config = {
7
- ...defaultConfig,
8
- };
9
-
10
- export default config;