This commit is contained in:
Dan Schulte 2018-11-14 15:33:27 -08:00
Родитель cf0eff4cbf
Коммит aaf4665658
1 изменённых файлов: 25 добавлений и 0 удалений

25
rollup.config.js Normal file
Просмотреть файл

@ -0,0 +1,25 @@
import sourcemaps from "rollup-plugin-sourcemaps";
const banner = `/** @license ms-rest-azure-env
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/`;
/**
* @type {import('rollup').RollupFileOptions}
*/
export default {
input: './dist/lib/msRestNodeAuth.js',
external: [
"adal-node"
],
output: {
file: "./dist/msRestNodeAuth.js",
format: "cjs",
sourcemap: true,
banner
},
plugins: [
sourcemaps()
]
};