package.js 273B

123456789101112
  1. var profile = {
  2. resourceTags: {
  3. ignore: function(filename, mid){
  4. // only include moment/moment
  5. return mid != "moment/moment";
  6. },
  7. amd: function(filename, mid){
  8. return /\.js$/.test(filename);
  9. }
  10. }
  11. };