mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-21 08:14:16 +00:00
Compare commits
4 Commits
next
...
konnorroge
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29b06f6549 | ||
|
|
dd1289987f | ||
|
|
364614cd18 | ||
|
|
c099d6064e |
@@ -30,6 +30,7 @@ Components with the <wa-badge variant="warning">Experimental</wa-badge> badge sh
|
||||
- Improved `<wa-slider>` to not throw an error when string values are passed to the `min`, `max`, and `step` properties [issue:1823]
|
||||
- Fixed a bug in Web Awesome form controls that caused `<wa-input form="foo">` to set the form property to equal `"foo"` instead of returning an `HTMLFormElement` breaking platform expectations. [pr:1815]
|
||||
- Fixed a bug in `<wa-button>` causing it to not copy over attributes for form submissions. [pr:1815]
|
||||
- Fixed a bug where the build script was not building `/dist/(utilities|events).js` [pr:1816]
|
||||
- Improved performance of all components by fixing how CSS is imported and reused [issue:1812]
|
||||
- Modified the default `transition` styles of `<wa-dropdown-item>` to use design tokens [pr:1693]
|
||||
|
||||
|
||||
@@ -30,6 +30,10 @@
|
||||
"./dist/react/*": "./dist/react/*",
|
||||
"./dist/translations": "./dist/translations",
|
||||
"./dist/translations/*": "./dist/translations/*",
|
||||
"./dist/utilities": "./dist/utilities",
|
||||
"./dist/utilities/*": "./dist/utilities/*",
|
||||
"./dist/events": "./dist/events",
|
||||
"./dist/events/*": "./dist/events/*",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
|
||||
@@ -215,6 +215,11 @@ export async function build(options = {}) {
|
||||
...(await globby(posix.join(rootDir, 'src/components/**/!(*.(style|test)).ts'))),
|
||||
// Translations
|
||||
...(await globby(posix.join(rootDir, 'src/translations/**/*.ts'))),
|
||||
// Utilities
|
||||
...(await globby(posix.join(rootDir, 'src/utilities/**/*.ts'))),
|
||||
// Events
|
||||
...(await globby(posix.join(rootDir, 'src/events/**/*.ts'))),
|
||||
// TODO: Should `src/internal` be included?
|
||||
// React wrappers
|
||||
...(await globby(posix.join(rootDir, 'src/react/**/*.ts'))),
|
||||
],
|
||||
@@ -435,6 +440,7 @@ export async function build(options = {}) {
|
||||
}
|
||||
|
||||
// copy everything to unbundled before we generate bundles.
|
||||
// this may cause watcher events to break. if things are broken with file watching, comment this out.
|
||||
await copy(getCdnDir(), getDistDir(), { overwrite: true });
|
||||
await regenerateBundle();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user