酒店预订平台
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.
 
 
 
 
 
 

16 lines
282 B

  1. import build from './build.js';
  2. export default ([
  3. {
  4. input: 'entry/entry-complete.js',
  5. output: Object.assign({}, build.output, {
  6. file: './Sortable.js',
  7. format: 'umd'
  8. })
  9. }
  10. ]).map(config => {
  11. let buildCopy = { ...build };
  12. return Object.assign(buildCopy, config);
  13. });