Skip to content

Commit

Permalink
fix: helpers package resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
chejimmy committed Dec 3, 2024
1 parent 712799f commit 2939048
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 0 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@
"@iot-app-kit/charts-core": "^2.1.2",
"@iot-app-kit/core": "12.2.0",
"@iot-app-kit/core-util": "12.2.0",
"@iot-app-kit/helpers": "*",
"@iot-app-kit/source-iottwinmaker": "12.2.0",
"@tanstack/react-query": "^5.32.1",
"autosize": "^6.0.1",
Expand Down
7 changes: 3 additions & 4 deletions packages/react-components/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import {
MINUTE_IN_MS,
SECOND_IN_MS,
} from '@iot-app-kit/helpers/constants/time';
import { defineConfig, devices } from '@playwright/test';

const SECOND_IN_MS = 1000;
const MINUTE_IN_MS = 60_000;

/**
* See https://playwright.dev/docs/test-configuration.
*/
Expand Down
1 change: 0 additions & 1 deletion packages/scene-composer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@iot-app-kit/core": "12.2.0",
"@iot-app-kit/helpers": "*",
"@iot-app-kit/react-components": "12.2.0",
"@iot-app-kit/source-iottwinmaker": "12.2.0",
"@matterport/r3f": "0.2.7",
Expand Down
4 changes: 3 additions & 1 deletion packages/scene-composer/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { MINUTE_IN_MS, SECOND_IN_MS } from '@iot-app-kit/helpers/constants/time';
import { defineConfig, devices } from '@playwright/test';

const SECOND_IN_MS = 1000;
const MINUTE_IN_MS = 60_000;

/**
* See https://playwright.dev/docs/test-configuration.
*/
Expand Down

0 comments on commit 2939048

Please sign in to comment.