mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
Package.describe({
|
|
summary: "Library for manipulating documents based on data",
|
|
version: "1.0.0",
|
|
deprecated: true,
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.export('d3', 'client');
|
|
api.addFiles('d3.v3.js', 'client');
|
|
});
|