mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat: add compound html timerange component (#14)
* fix: add context logic to component factory * feat: add compound time range html component
This commit is contained in:
@@ -12,6 +12,9 @@ module.exports = [
|
||||
format: 'esm',
|
||||
sourcemap: true,
|
||||
},
|
||||
watch: {
|
||||
clearScreen: false
|
||||
},
|
||||
external: (id) => {
|
||||
// Don't externalize relative imports (starts with . or /)
|
||||
if (id.startsWith('.') || id.startsWith('/')) return false;
|
||||
@@ -43,6 +46,9 @@ module.exports = [
|
||||
format: 'cjs',
|
||||
sourcemap: true,
|
||||
},
|
||||
watch: {
|
||||
clearScreen: false
|
||||
},
|
||||
external: (id) => {
|
||||
// Don't externalize relative imports (starts with . or /)
|
||||
if (id.startsWith('.') || id.startsWith('/')) return false;
|
||||
@@ -66,4 +72,4 @@ module.exports = [
|
||||
}),
|
||||
],
|
||||
},
|
||||
];
|
||||
];
|
||||
|
||||
@@ -11,6 +11,9 @@ module.exports = [
|
||||
format: 'esm',
|
||||
sourcemap: true,
|
||||
},
|
||||
watch: {
|
||||
clearScreen: false
|
||||
},
|
||||
external: (id) => {
|
||||
// Don't externalize relative imports (starts with . or /)
|
||||
if (id.startsWith('.') || id.startsWith('/')) return false;
|
||||
@@ -39,6 +42,9 @@ module.exports = [
|
||||
format: 'cjs',
|
||||
sourcemap: true,
|
||||
},
|
||||
watch: {
|
||||
clearScreen: false
|
||||
},
|
||||
external: (id) => {
|
||||
// Don't externalize relative imports (starts with . or /)
|
||||
if (id.startsWith('.') || id.startsWith('/')) return false;
|
||||
@@ -59,4 +65,4 @@ module.exports = [
|
||||
}),
|
||||
],
|
||||
},
|
||||
];
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user