@movable/ui 0.3.0 → 0.3.1-import-troubleshooting.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.1-import-troubleshooting.1",
4
4
  "description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
5
5
  "module": "lib/index.mjs",
6
6
  "types": "lib/index.d.ts",
@@ -8,16 +8,17 @@
8
8
  "lib"
9
9
  ],
10
10
  "scripts": {
11
- "dev": "vite",
12
- "test": "cypress run --component",
13
- "test:dev": "cypress open --component",
14
11
  "build": "vite build",
12
+ "build-storybook": "storybook build",
13
+ "dev": "vite",
15
14
  "lint": "run-p -n lint:src lint:cypress",
16
15
  "lint:src": "tsc --project ./tsconfig.json && eslint -c ./.eslintrc.json ./src --report-unused-disable-directives --max-warnings 0",
17
16
  "lint:cypress": "tsc --project ./cypress/tsconfig.json && eslint -c ./cypress/.eslintrc.json ./cypress --resolve-plugins-relative-to ./cypress --report-unused-disable-directives --max-warnings 0 --no-error-on-unmatched-pattern",
18
17
  "prepare": "husky install",
19
18
  "storybook": "storybook dev -p 6006",
20
- "build-storybook": "storybook build"
19
+ "test": "cypress run --component",
20
+ "test:dev": "cypress open --component",
21
+ "watch": "vite build --watch"
21
22
  },
22
23
  "repository": {
23
24
  "type": "git",
@@ -61,6 +62,7 @@
61
62
  "eslint-plugin-storybook": "^0.6.15",
62
63
  "husky": "^8.0.0",
63
64
  "lint-staged": "^13.2.3",
65
+ "npm-run-all": "^4.1.5",
64
66
  "postcss": "^8.4.27",
65
67
  "react": "^18.2.0",
66
68
  "react-dom": "^18.2.0",
@@ -70,6 +72,9 @@
70
72
  "vite": "^4.4.5"
71
73
  },
72
74
  "peerDependencies": {
75
+ "@emotion/react": "^11.11.1",
76
+ "@emotion/styled": "^11.11.0",
77
+ "@mui/material": "^5.14.8",
73
78
  "react": "^18.2.0",
74
79
  "react-dom": "^18.2.0"
75
80
  },
@@ -82,7 +87,6 @@
82
87
  "dependencies": {
83
88
  "@emotion/react": "^11.11.1",
84
89
  "@emotion/styled": "^11.11.0",
85
- "@mui/material": "^5.14.8",
86
- "npm-run-all": "^4.1.5"
90
+ "@mui/material": "^5.14.8"
87
91
  }
88
92
  }
@@ -1,5 +0,0 @@
1
- type TestComponentOneProps = {
2
- stringToDisplay: string;
3
- };
4
- export declare function TestComponentOne({ stringToDisplay }: TestComponentOneProps): import("react/jsx-runtime").JSX.Element;
5
- export {};
@@ -1,5 +0,0 @@
1
- type TestComponentTwoProps = {
2
- stringToDisplay: string;
3
- };
4
- export declare function TestComponentTwo({ stringToDisplay }: TestComponentTwoProps): import("react/jsx-runtime").JSX.Element;
5
- export {};