Skip to content

Commit

Permalink
Merge pull request #249 from Capgemini/feature/drop-generate-components
Browse files Browse the repository at this point in the history
feat: add support for CRA webpack 5
  • Loading branch information
daniele-zurico authored Dec 21, 2021
2 parents 02a8147 + fcf4e4b commit 09ec135
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 706 deletions.
5 changes: 4 additions & 1 deletion .storybook/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ export const parameters = {
return order--;
} else if (a[0].includes('table')) {
return order--;
} else {
} else if (a[0].includes('details')) {
return order--;
}
else {
return 0;
}
}
Expand Down
4 changes: 0 additions & 4 deletions bin/dcx-gen-pc.js

This file was deleted.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
"name": "@capgeminiuk/dcx-react-library",
"author": "Daniele Zurico",
"license": "MIT",
"version": "0.3.2",
"version": "0.3.3",
"source": "src/index.ts",
"main": "dist/dcx-react-library.js",
"module": "dist/dcx-react-library.module.js",
"unpkg": "dist/dcx-react-library.umd.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"bin"
"dist"
],
"scripts": {
"build": "microbundle --jsx React.createElement",
Expand Down
286 changes: 0 additions & 286 deletions src/generatePresentationalComponent/__test__/generateComponent.test.ts

This file was deleted.

41 changes: 0 additions & 41 deletions src/generatePresentationalComponent/__test__/generateStyle.test.ts

This file was deleted.

Loading

0 comments on commit 09ec135

Please sign in to comment.