@nfrasser/simple-html-tokenizer
Version:
Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.
17 lines (14 loc) • 337 B
JavaScript
/*jshint node:true*/
module.exports = {
name: 'in-repo-commands',
isDevelopingAddon: function() {
return true;
},
includedCommands: function() {
return {
'build-char-refs': require('./build-char-refs-command.js'),
'build-tokenizer-states': require('./build-tokenizer-states.js')
};
}
};
;