酒店预订平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.js 281 B

3 years ago
1234567891011121314151617
  1. import babel from 'rollup-plugin-babel';
  2. import json from 'rollup-plugin-json';
  3. import resolve from 'rollup-plugin-node-resolve';
  4. import banner from './banner.js';
  5. export default {
  6. output: {
  7. banner,
  8. name: 'Sortable'
  9. },
  10. plugins: [
  11. json(),
  12. babel(),
  13. resolve()
  14. ]
  15. };