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 367ca2a commit abdec8eCopy full SHA for abdec8e
tools/build.js
@@ -31,10 +31,9 @@ promise = promise.then(() => del(['dist/*']));
31
presets: pkg.babel.presets.map(x => (x === 'latest' ? ['latest', { es2015: { modules: false } }] : x)),
32
}))],
33
}).then(bundle => bundle.write({
34
- dest: `dist/${format === 'cjs' ? 'aspnet-auth' : `aspnet-auth-${format}`}.js`,
+ file: `dist/${format === 'cjs' ? 'aspnet-auth' : `aspnet-auth-${format}`}.js`,
35
format,
36
- sourceMap: true,
37
- moduleName: format === 'umd' ? pkg.name : undefined,
+ name: format === 'umd' ? pkg.name : undefined,
38
})));
39
});
40
0 commit comments