Compare commits

..

No commits in common. "d2838808b81de5ff7a3398003693b9a285f4d923" and "19b886e222d3f6e0e3a1cc89005458a58c27a93a" have entirely different histories.

5 changed files with 42 additions and 810 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@cubetiq/muui",
"version": "0.0.1-alpha.2",
"version": "0.0.1",
"author": {
"name": "Sambo Chea",
"email": "sombochea@cubetiqs.com"
@ -15,29 +15,24 @@
"license": "MIT",
"main": "./dist/muui-vite.umd.js",
"module": "./dist/muui-vite.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/muui-vite.es.js",
"require": "./dist/muui-vite.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build"
},
"peerDependencies": {
"@emotion/react": "^11.x",
"@emotion/styled": "^11.x",
"@mui/icons-material": "^5.x",
"@mui/material": "^5.x",
"react": "^16.8.0 || 17.x || 18.x",
"react-dom": "^16.8.0 || 17.x | 18.x"
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {},
"devDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/node": "^17.0.34",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
@ -46,7 +41,11 @@
"eslint-plugin-react": "^7.29.4",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.1.1",
"vitest": "^0.12.6",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0"
},
"browserslist": {
"production": [
@ -74,14 +73,7 @@
"sourceType": "module"
}
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {},
"publishConfig": {
"access": "public"
}

View File

@ -1,20 +1,18 @@
import * as path from "node:path";
import * as path from "path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import dts from 'vite-plugin-dts';
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
entry: path.resolve(__dirname, "src/lib/index.ts"),
name: "muui",
formats: ['es', 'umd'],
fileName: (format) => `muui.${format}.js`,
entry: path.resolve(__dirname, "src/lib/index.tsx"),
name: "CUBETIQ MUUI",
fileName: (format) => `muui-vite.${format}.js`,
},
rollupOptions: {
// externalize deps that shouldn't be bundled
external: ["react", "react-dom", "@emotion/react", "@emotion/styled", "@mui/icons-material", "@mui/material"],
external: ["react", "react-dom"],
output: {
// Provide global variables to use in the UMD build for externalized deps
globals: {
@ -23,7 +21,5 @@ export default defineConfig({
},
},
},
plugins: [react(),dts({
insertTypesEntry: true
})],
plugins: [react()],
});

8
vitest.config.js Normal file
View File

@ -0,0 +1,8 @@
import { defineConfig } from "vite";
export default defineConfig({
test: {
globals: false,
environment: "jsdom",
},
});

790
yarn.lock

File diff suppressed because it is too large Load Diff