-
-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b18fe6c
commit 60fb1ae
Showing
2 changed files
with
26 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Package.describe({ | |
summary: | ||
'Easily create forms with automatic insert and update, and automatic reactive validation.', | ||
git: 'https://github.com/aldeed/meteor-autoform.git', | ||
version: '8.0.0-rc.4' | ||
version: '8.0.0' | ||
}) | ||
|
||
Npm.depends({ | ||
|
@@ -31,8 +31,8 @@ Package.onUse(function (api) { | |
[ | ||
'momentjs:[email protected]', | ||
'mrt:[email protected]', | ||
'aldeed:[email protected].3', | ||
'aldeed:[email protected]-rc.300.10', | ||
'aldeed:[email protected].4', | ||
'aldeed:[email protected]', | ||
'aldeed:[email protected]', | ||
'reload' | ||
], | ||
|
@@ -61,7 +61,7 @@ Package.onUse(function (api) { | |
}) | ||
|
||
Package.onTest(function (api) { | ||
api.versionsFrom(['2.8.0', '3.0-rc.4']) | ||
api.versionsFrom(['2.8.0', '3.0.1']) | ||
// Running the tests requires a dummy project in order to | ||
// resolve npm dependencies and the test env dependencies. | ||
api.use([ | ||
|
@@ -71,16 +71,16 @@ Package.onTest(function (api) { | |
'mongo', | ||
'[email protected]', | ||
'[email protected]', | ||
'meteortesting:[email protected]', | ||
'aldeed:[email protected]' | ||
'meteortesting:[email protected]' | ||
]) | ||
api.use([ | ||
'aldeed:[email protected]', | ||
'momentjs:[email protected]' | ||
], 'client', { weak: true }) | ||
api.use([ | ||
'aldeed:[email protected]-rc.2', | ||
'aldeed:[email protected]', | ||
'aldeed:moment-timezone', | ||
'aldeed:[email protected]-rc.300.10' | ||
'aldeed:[email protected]' | ||
], 'client') | ||
|
||
api.addFiles([ | ||
|