-
-
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
91c4e86
commit d708e0c
Showing
5 changed files
with
175 additions
and
173 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,15 +4,15 @@ 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.1' | ||
version: '8.0.0-rc.3' | ||
}) | ||
|
||
Npm.depends({ | ||
'mongo-object': '3.0.1' | ||
}) | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom(['2.8.0', '3.0-rc.0']) | ||
api.versionsFrom(['3.0.1']) | ||
|
||
// Dependencies | ||
api.use([ | ||
|
@@ -22,17 +22,17 @@ Package.onUse(function (api) { | |
'random', | ||
'ecmascript', | ||
'mongo', | ||
'blaze@2.9.0 || 3.0.0-alpha300.17', | ||
'[email protected].3 || 1.4.4-alpha300.17', | ||
'[email protected] || 3.0.1-alpha300.19' | ||
'[email protected]', | ||
'[email protected].4', | ||
'[email protected]' | ||
]) | ||
|
||
api.use( | ||
[ | ||
'momentjs:[email protected]', | ||
'mrt:[email protected]', | ||
'aldeed:[email protected].0', | ||
'aldeed:[email protected]beta300.0', | ||
'aldeed:[email protected].3', | ||
'aldeed:[email protected]rc.300.10', | ||
'aldeed:[email protected]', | ||
'reload' | ||
], | ||
|
@@ -61,24 +61,24 @@ Package.onUse(function (api) { | |
}) | ||
|
||
Package.onTest(function (api) { | ||
api.versionsFrom(['2.8.0', '3.0-rc.0']) | ||
api.versionsFrom(['2.8.0', '3.0-rc.4']) | ||
// Running the tests requires a dummy project in order to | ||
// resolve npm dependencies and the test env dependencies. | ||
api.use([ | ||
'ecmascript', | ||
'random', | ||
'tracker', | ||
'[email protected] || 3.0.0-alpha300.17', | ||
'[email protected] || 1.4.4-alpha300.17', | ||
'mongo', | ||
'meteortesting:[email protected]', | ||
'aldeed:[email protected]', | ||
'[email protected]', | ||
'[email protected]', | ||
'meteortesting:[email protected]', | ||
'aldeed:[email protected]', | ||
'momentjs:[email protected]' | ||
]) | ||
api.use([ | ||
'aldeed:[email protected].1', | ||
'aldeed:[email protected].2', | ||
'aldeed:moment-timezone', | ||
'aldeed:[email protected]beta300.0' | ||
'aldeed:[email protected]rc.300.10', | ||
], 'client') | ||
|
||
api.addFiles([ | ||
|
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,18 +4,18 @@ | |
# 'meteor add' and 'meteor remove' will edit this file for you, | ||
# but you can also edit it by hand. | ||
|
||
[email protected]-rc300.4 # Packages every Meteor app needs to have | ||
[email protected]-rc300.4 # Packages for a great mobile UX | ||
[email protected]-rc300.4 # The database Meteor supports right now | ||
[email protected]-rc300.4 # Reactive variable for tracker | ||
[email protected]-rc300.4 # Meteor's client-side reactive programming library | ||
[email protected] # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
[email protected] # The database Meteor supports right now | ||
[email protected] # Reactive variable for tracker | ||
[email protected] # Meteor's client-side reactive programming library | ||
|
||
[email protected]-rc300.4 # CSS minifier run for production mode | ||
[email protected]-rc300.4 # JS minifier run for production mode | ||
[email protected]-rc300.4 # ECMAScript 5 compatibility for older browsers | ||
[email protected]-rc300.4 # Enable ECMAScript2015+ syntax in app code | ||
[email protected]-rc300.4 # Enable TypeScript syntax in .ts and .tsx modules | ||
[email protected]-rc300.4 # Server-side component of the `meteor shell` command | ||
[email protected] # CSS minifier run for production mode | ||
[email protected] # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers | ||
[email protected] # Enable ECMAScript2015+ syntax in app code | ||
[email protected] # Enable TypeScript syntax in .ts and .tsx modules | ||
[email protected] # Server-side component of the `meteor shell` command | ||
|
||
blaze-html-templates | ||
aldeed:[email protected] | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
[email protected]-rc.4 | ||
[email protected].1 |
Oops, something went wrong.