@graphql-tools/optimize 1.3.1-alpha-420b7771.0 → 1.3.1-alpha-9d6b1e75.0
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/package.json
CHANGED
package/typings/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './optimize.
|
|
2
|
-
export * from './types.
|
|
3
|
-
export * from './optimizers/remove-description.
|
|
4
|
-
export * from './optimizers/remove-empty-nodes.
|
|
5
|
-
export * from './optimizers/remove-loc.
|
|
1
|
+
export * from './optimize.cjs';
|
|
2
|
+
export * from './types.cjs';
|
|
3
|
+
export * from './optimizers/remove-description.cjs';
|
|
4
|
+
export * from './optimizers/remove-empty-nodes.cjs';
|
|
5
|
+
export * from './optimizers/remove-loc.cjs';
|
package/typings/optimize.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentNode } from 'graphql';
|
|
2
|
-
import { DocumentOptimizer } from './types.
|
|
2
|
+
import { DocumentOptimizer } from './types.cjs';
|
|
3
3
|
/**
|
|
4
4
|
* This method accept a DocumentNode and applies the optimizations you wish to use.
|
|
5
5
|
* You can override the default ones or provide you own optimizers if you wish.
|