Compare commits

...

2 Commits

Author SHA1 Message Date
Sambo Chea d2838808b8
Updated the package.json 2022-05-17 08:44:41 +07:00
Sambo Chea ea06b0d706
Updated packages and deps 2022-05-17 08:37:44 +07:00
5 changed files with 810 additions and 42 deletions

View File

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

View File

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

View File

@ -1,8 +0,0 @@
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