Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.js 273B

1234567891011
  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. };