08-27-周三_17-09-29

This commit is contained in:
2025-08-27 17:10:05 +08:00
commit 86df397d8f
12735 changed files with 1145479 additions and 0 deletions

20
node_modules/d3/bin/meteor generated vendored Normal file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env node
var fs = require("fs"),
package = require("../package.json");
console.log(
"// Package metadata for Meteor.js.\n" +
"\n" +
"Package.describe({\n" +
" name: \"d3js:d3\", // http://atmospherejs.com/d3js/d3\n" +
" summary: \"D3 (official): " + package.description + "\",\n" +
" version: \"" + package.version + "\",\n" +
" git: \"https://github.com/mbostock/d3.git\"\n" +
"});\n" +
"\n" +
"Package.onUse(function(api) {\n" +
" api.versionsFrom([\"METEOR@1.0\"]);\n" +
" api.addFiles(\"d3.js\", \"client\");\n" +
"});"
);