Skip to content

Commit

Permalink
feat: add Tags for Pulumi project
Browse files Browse the repository at this point in the history
  • Loading branch information
baartch committed Jan 23, 2024
1 parent f147da9 commit b55af85
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
const typescript = require("rollup-plugin-typescript2");
const pkg = require("./package.json");
const typescript = require('rollup-plugin-typescript2');
const pkg = require('./package.json');

module.exports = {
input: "src/index.ts",
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: "cjs",
exports: "named",
format: 'cjs',
exports: 'named',
sourcemap: true,
strict: false,
},
],
plugins: [typescript()],
external: ['@pulumi/pulumi'],
};

0 comments on commit b55af85

Please sign in to comment.