mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- bump of package markdown so conflict errors are solved
- removing unncessary mongo import - importing packages back in spacebars-test
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
|
||||
Package.describe({
|
||||
summary: "Markdown-to-HTML processor",
|
||||
version: "2.0.0",
|
||||
version: "3.0.0-alpha300.6",
|
||||
deprecated: true,
|
||||
documentation: 'README.md'
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
api.versionsFrom('2.2');
|
||||
api.use('ecmascript');
|
||||
api.use("templating@2.0.0-alpha300.5", "client", {weak: true});
|
||||
api.versionsFrom('3.0-alpha.6');
|
||||
api.use('ecmascript@1.0.0-alpha300.6');
|
||||
api.use("templating@2.0.0-alpha300.6", "client", {weak: true});
|
||||
api.mainModule('template-integration.js', 'client', { lazy: true });
|
||||
});
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { Mongo } from "meteor/mongo";
|
||||
Tinytest.addAsync("mongo-decimal - insert/find Decimal", async function (test) {
|
||||
var coll = new Mongo.Collection("mongo-decimal");
|
||||
var pi = Decimal("3.141592653589793");
|
||||
|
||||
Reference in New Issue
Block a user