mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
415 B
JavaScript
17 lines
415 B
JavaScript
Package.describe({
|
|
summary: "Check whether a value matches a pattern",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['underscore', 'ejson'], ['client', 'server']);
|
|
|
|
api.add_files('match.js', ['client', 'server']);
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use(['check', 'tinytest', 'underscore', 'ejson'], ['client', 'server']);
|
|
|
|
api.add_files('match_test.js', ['client', 'server']);
|
|
});
|