mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
Package.describe({
|
|
name: "sha",
|
|
test: "sha-test",
|
|
summary: "SHA256 implementation",
|
|
version: "1.0.0",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.export('SHA256');
|
|
api.add_files(['sha256.js'], ['client', 'server']);
|
|
});
|