Skip to content

Commit

Permalink
Merge branch 'release/v11.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ShushN committed Jan 28, 2025
2 parents b0bce8d + 21e87bd commit a2ddfe1
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 77 deletions.
23 changes: 16 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ipguk/react-ui",
"version": "10.0.0-8",
"version": "11.0.0-9",
"description": "React UI component library for IPG web applications",
"author": {
"name": "IPG-Automotive-UK"
Expand All @@ -10,14 +10,23 @@
"type": "git",
"url": "git+https://github.com/IPG-Automotive-UK/react-ui.git"
},
"main": "dist/index",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "pnpm run clean && pnpm run copy-files && tsc --project ./tsconfig.production.json",
"build": "pnpm run clean && pnpm run copy-files && pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"build:esm": "tsc --project ./tsconfig.esm.json",
"clean": "rimraf dist",
"copy-files": "copyfiles -e '**/*.test.**' -e '**/*.spec.**' -e '**/*.stories.**' -u 1 src/**/*.html src/**/*.css src/**/*/*.svg dist/",
"copy-files": "copyfiles -e '**/*.test.**' -e '**/*.spec.**' -e '**/*.stories.**' -u 1 src/**/*.html src/**/*.css src/**/*/*.svg dist/esm/ && copyfiles -e '**/*.test.**' -e '**/*.spec.**' -e '**/*.stories.**' -u 1 src/**/*.html src/**/*.css src/**/*/*.svg dist/cjs/",
"prepublishOnly": "pnpm run build",
"start": "microbundle-crl watch --no-compress --format modern,cjs --jsxFragment React.Fragment",
"storybook": "storybook dev -p 6006",
Expand All @@ -34,7 +43,7 @@
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^6.1.9",
"@mui/material": "^6.2.0",
"@mui/x-data-grid-generator": "^7.10.0",
"@playwright/test": "^1.45.2",
"@storybook/addon-actions": "^8.2.6",
Expand Down Expand Up @@ -103,7 +112,7 @@
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@mui/icons-material": "^6.1.9",
"@mui/icons-material": "^6.2.0",
"@mui/x-data-grid": "^7.10.0",
"@mui/x-tree-view": "^7.10.0",
"colord": "^2.9.3",
Expand All @@ -124,7 +133,7 @@
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^6.1.9",
"@mui/material": "^6.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading

0 comments on commit a2ddfe1

Please sign in to comment.