mui-design-system 0.0.4 → 0.0.6

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.js CHANGED
@@ -1,3 +1,4 @@
1
+ import "./types/types";
1
2
  export { default as CustomTheme } from "./theme/theme";
2
3
  export { default as NextCacheProvider } from "./nextjs/NextCacheProvider";
3
4
  export { default as ReactCacheProvider } from "./react/ReactCacheProvider";
@@ -1,3 +1,4 @@
1
+ import "@mui/material";
1
2
  import { ReactElement, ReactNode } from 'react';
2
3
  import "./palette";
3
4
  import "./typography";
@@ -1,2 +1,4 @@
1
+ // import should remain for running mui to declare modules
2
+ import "@mui/material";
1
3
  import "./palette";
2
4
  import "./typography";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mui-design-system",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -13,7 +13,7 @@
13
13
  "dist"
14
14
  ],
15
15
  "scripts": {
16
- "build": "tsc && node clean-import.js",
16
+ "build": "tsc",
17
17
  "prepublishOnly": "npm run build",
18
18
  "test": "echo \"Error: no test specified\" && exit 1"
19
19
  },