config.bin.js 274 B

12345678910111213141516
  1. import buble from 'rollup-plugin-buble'
  2. export default {
  3. entry: 'src/bin/acorn.js',
  4. dest: 'bin/acorn',
  5. format: 'cjs',
  6. banner: '#!/usr/bin/env node',
  7. external: [ 'fs', 'path', 'acorn' ],
  8. paths: {
  9. acorn: '../dist/acorn.js'
  10. },
  11. plugins: [
  12. buble()
  13. ]
  14. }