@react-analyzer/shared 0.0.2-next.1 → 0.0.3-next.2

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/index.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- import { Context } from 'tsl';
2
-
3
1
  /**
4
2
  * @internal
5
3
  */
@@ -29,7 +27,7 @@ interface AnalyzerOptions {
29
27
  declare const DEFAULT_ANALYZER_OPTIONS: {
30
28
  readonly version: "19.1.0";
31
29
  };
32
- declare function getAnalyzerOptions(context: Omit<Context, "data">): AnalyzerOptions;
30
+ declare function getAnalyzerOptions(): AnalyzerOptions;
33
31
 
34
32
  declare function getCommandLineOptions(): {
35
33
  project?: string;
package/dist/index.js CHANGED
@@ -25,7 +25,7 @@ function getCommandLineOptions() {
25
25
  var DEFAULT_ANALYZER_OPTIONS = {
26
26
  version: "19.1.0"
27
27
  };
28
- function getAnalyzerOptions(context) {
28
+ function getAnalyzerOptions() {
29
29
  const { project = "tsconfig.json" } = getCommandLineOptions();
30
30
  const options = getTsconfig(project)?.config["react"];
31
31
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-analyzer/shared",
3
- "version": "0.0.2-next.1",
3
+ "version": "0.0.3-next.2",
4
4
  "description": "React Analyzer Shared constants and functions.",
5
5
  "homepage": "https://github.com/Rel1cx/react-analyzer",
6
6
  "bugs": {
@@ -28,13 +28,13 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "get-tsconfig": "^4.10.1",
31
- "ts-pattern": "^5.7.1",
32
- "@react-analyzer/kit": "0.0.2-next.1",
33
- "@react-analyzer/eff": "0.0.2-next.1"
31
+ "ts-pattern": "^5.8.0",
32
+ "@react-analyzer/eff": "0.0.3-next.2",
33
+ "@react-analyzer/kit": "0.0.3-next.2"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@tsconfig/node22": "^22.0.2",
37
- "@types/node": "^24.0.13",
37
+ "@types/node": "^24.2.1",
38
38
  "tsup": "^8.5.0",
39
39
  "type-fest": "^4.41.0",
40
40
  "@local/configs": "0.0.0"