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