We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a68981 commit a52c555Copy full SHA for a52c555
rollup.config.js
@@ -11,10 +11,25 @@ const entryName = 'aurelia-validation';
11
12
export default [{
13
input: `src/${entryName}.ts`,
14
- output: {
15
- file: `dist/es2015/${entryName}.js`,
16
- format: 'es'
17
- },
+ output: [
+ {
+ file: `dist/es2015/${entryName}.js`,
+ format: 'es'
18
+ },
19
20
+ file: `dist/umd/${entryName}.js`,
21
+ format: 'umd',
22
+ name: 'au.validation',
23
+ globals: {
24
+ 'aurelia-binding': 'au',
25
+ 'aurelia-templating': 'au',
26
+ 'aurelia-dependency-injection': "au",
27
+ "aurelia-logging": "au.LogManager",
28
+ "aurelia-pal": "au",
29
+ "aurelia-task-queue": "au",
30
+ }
31
32
+ ],
33
plugins: [
34
typescript({
35
useTsconfigDeclarationDir: true,
0 commit comments