terra-draw 1.0.0-beta.10 → 1.0.0-beta.11

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.
@@ -193,11 +193,13 @@ test.describe("linestring mode", () => {
193
193
  test(`mode can set with snapping enabled used to create multiple linestrings${name}`, async ({
194
194
  page,
195
195
  }) => {
196
+ const configQueryParam: TestConfigOptions[] = config
197
+ ? [...config, "snappingCoordinate"]
198
+ : ["snappingCoordinate"];
199
+
196
200
  const mapDiv = await setupMap({
197
201
  page,
198
- configQueryParam: config
199
- ? [...config, "snappingCoordinate"]
200
- : undefined,
202
+ configQueryParam,
201
203
  });
202
204
  await changeMode({ page, mode });
203
205
 
package/eslint.config.js CHANGED
@@ -26,6 +26,7 @@ export default [
26
26
  rules: {
27
27
  "@typescript-eslint/no-empty-function": "warn",
28
28
  "@typescript-eslint/no-explicit-any": "warn",
29
+ "no-console": process.env.CI ? "error" : "warn",
29
30
  },
30
31
  },
31
32
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terra-draw",
3
- "version": "1.0.0-beta.10",
3
+ "version": "1.0.0-beta.11",
4
4
  "description": "Frictionless map drawing across mapping provider",
5
5
  "scripts": {
6
6
  "docs": "typedoc",