Skip to content

Commit

Permalink
Merge branch 'main' into feature/WEB-9040-viewing-form-design-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
justinelliottcobb authored Jan 31, 2024
2 parents 9872fb0 + 804d12b commit 761331e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.9.3](https://github.com/PhillipsAuctionHouse/seldon/compare/v1.9.2...v1.9.3) (2024-01-30)

### Bug Fixes

* remove config changes that were unnecessary and remove datepicker from exported styles ([3d82a8f](https://github.com/PhillipsAuctionHouse/seldon/commit/3d82a8f4329ae1ac0b48ffbe02a7d7cab13fbe8d))
* remove unused config change ([e2c876f](https://github.com/PhillipsAuctionHouse/seldon/commit/e2c876fdd39413688251bb20bb676d6e368be2e1))

## [1.9.2](https://github.com/PhillipsAuctionHouse/seldon/compare/v1.9.1...v1.9.2) (2024-01-21)

### Bug Fixes
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@phillips/seldon",
"version": "1.9.2",
"version": "1.9.3",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
"default": "./dist/index.js"
}
},
"./dist/": {
Expand Down
2 changes: 1 addition & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@import './typography';
// ⚛️ Components
@import 'components/Button/button';
@import 'components/DatePicker/datePicker';
// @import 'components/DatePicker/datePicker';
@import 'components/Header/header';
@import 'components/HeroBanner/heroBanner';
@import 'components/Input/input';
Expand Down
15 changes: 4 additions & 11 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ export default defineConfig({
},
],
},

build: {
minify: true,
reportCompressedSize: true,
lib: {
// Could also be a dictionary or array of multiple entry points
entry: ['index.ts'],
entry: ['src/index.ts'],
name: 'seldon',
},

rollupOptions: {
input: 'src/index.ts',
output: [
Expand All @@ -64,16 +64,9 @@ export default defineConfig({
format: 'es',
preserveModules: true,
preserveModulesRoot: 'src',
chunkFileNames: '[name].mjs',
entryFileNames: '[name].mjs',
chunkFileNames: '[name].js',
entryFileNames: '[name].js',
},
// {
// dir: 'dist',
// format: 'cjs',
// preserveModulesRoot: 'src',
// chunkFileNames: '[name].cjs',
// entryFileNames: '[name].cjs',
// },
],
// make sure to externalize deps that shouldn't be bundled
// into your library
Expand Down

0 comments on commit 761331e

Please sign in to comment.