mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
411 B
JavaScript
17 lines
411 B
JavaScript
Package.describe({
|
|
summary: "HTML5 tokenizer"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export('HTML5Tokenizer');
|
|
api.add_files(['entities.js', 'constants.js', 'buffer.js',
|
|
'events.js', 'tokenizer.js',
|
|
'html5_tokenizer.js']);
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use('html5-tokenizer');
|
|
api.use('tinytest');
|
|
api.add_files('tokenizer_tests.js', ['server']);
|
|
});
|