-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump packages version * update to Meteor 1.4.3! 🚀
- Loading branch information
Showing
35 changed files
with
159 additions
and
159 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 |
---|---|---|
|
@@ -8,7 +8,6 @@ nova:users # user management and permissions | |
|
||
############ Features Packages ############ | ||
|
||
nova:events | ||
nova:posts | ||
nova:comments | ||
nova:newsletter | ||
|
@@ -17,6 +16,7 @@ nova:notifications | |
nova:getting-started | ||
nova:categories | ||
nova:voting | ||
nova:events | ||
nova:embedly | ||
nova:api | ||
nova:rss | ||
|
@@ -37,7 +37,7 @@ nova:i18n-en-us # default language translation | |
|
||
############ Your Packages ############ | ||
|
||
[email protected].3 | ||
[email protected].4 | ||
# accounts-twitter | ||
# accounts-facebook | ||
|
||
|
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].2.3 | ||
[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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Nova", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"engines": { | ||
"npm": "^3.0" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -5,8 +5,8 @@ Package.describe({ | |
Package.onUse(function (api) { | ||
|
||
api.use([ | ||
'nova:core@1.0.0', | ||
'nova:forms@1.0.0', | ||
'nova:core@1.1.0', | ||
'nova:forms@1.1.0', | ||
|
||
'std:[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,15 +1,15 @@ | ||
Package.describe({ | ||
name: "nova:api", | ||
summary: "Telescope API package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
|
||
api.versionsFrom(['[email protected]']); | ||
|
||
api.use(['nova:core@1.0.0']); | ||
api.use(['nova:core@1.1.0']); | ||
|
||
api.mainModule("lib/server.js", "server"); | ||
// api.mainModule("lib/client.js", "client"); | ||
|
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,7 +1,7 @@ | ||
Package.describe({ | ||
name: "nova:base-components", | ||
summary: "Telescope components package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
|
@@ -11,11 +11,11 @@ Package.onUse(function (api) { | |
|
||
api.use([ | ||
// Nova packages | ||
'nova:core@1.0.0', | ||
'nova:posts@1.0.0', | ||
'nova:users@1.0.0', | ||
'nova:comments@1.0.0', | ||
'nova:voting@1.0.0', | ||
'nova:core@1.1.0', | ||
'nova:posts@1.1.0', | ||
'nova:users@1.1.0', | ||
'nova:comments@1.1.0', | ||
'nova:voting@1.1.0', | ||
|
||
// third-party packages | ||
'fortawesome:[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,7 +1,7 @@ | ||
Package.describe({ | ||
name: "nova:base-styles", | ||
summary: "Nova basic styles package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
|
@@ -10,11 +10,8 @@ Package.onUse(function (api) { | |
api.versionsFrom(['[email protected]']); | ||
|
||
api.use([ | ||
'nova:core@1.0.0', | ||
'nova:core@1.1.0', | ||
'fourseven:scss', | ||
// 'juliancwirko:[email protected]', | ||
// 'seba:[email protected]', | ||
// 'twbs:bootstrap@=4.0.0-alpha.2' | ||
]); | ||
|
||
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package.describe({ | ||
name: "nova:categories", | ||
summary: "Telescope tags package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/telescope-tags.git" | ||
}); | ||
|
||
|
@@ -10,9 +10,9 @@ Package.onUse(function (api) { | |
api.versionsFrom("[email protected]"); | ||
|
||
api.use([ | ||
'nova:core@1.0.0', | ||
'nova:posts@1.0.0', | ||
'nova:users@1.0.0' | ||
'nova:core@1.1.0', | ||
'nova:posts@1.1.0', | ||
'nova:users@1.1.0' | ||
]); | ||
|
||
api.mainModule("lib/server.js", "server"); | ||
|
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,7 +1,7 @@ | ||
Package.describe({ | ||
name: 'nova:cloudinary', | ||
summary: 'Telescope file upload package.', | ||
version: '1.0.0', | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
|
@@ -10,8 +10,8 @@ Package.onUse(function (api) { | |
api.versionsFrom(['[email protected]']); | ||
|
||
api.use([ | ||
'nova:posts@1.0.0', | ||
'nova:core@1.0.0' | ||
'nova:posts@1.1.0', | ||
'nova:core@1.1.0' | ||
]); | ||
|
||
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package.describe({ | ||
name: "nova:comments", | ||
summary: "Telescope comments package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
|
@@ -10,9 +10,9 @@ Package.onUse(function (api) { | |
api.versionsFrom(['[email protected]']); | ||
|
||
api.use([ | ||
'nova:core@1.0.0', | ||
'nova:posts@1.0.0', | ||
'nova:users@1.0.0' | ||
'nova:core@1.1.0', | ||
'nova:posts@1.1.0', | ||
'nova:users@1.1.0' | ||
]); | ||
|
||
api.mainModule("lib/server.js", "server"); | ||
|
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,7 +1,7 @@ | ||
Package.describe({ | ||
name: "nova:core", | ||
summary: "Telescope core package", | ||
version: "1.0.0", | ||
version: "1.1.0", | ||
git: "https://github.com/TelescopeJS/Telescope.git" | ||
}); | ||
|
||
|
@@ -10,12 +10,12 @@ Package.onUse(function(api) { | |
api.versionsFrom("[email protected]"); | ||
|
||
api.use([ | ||
'nova:lib@1.0.0', | ||
'nova:users@1.0.0', | ||
'nova:lib@1.1.0', | ||
'nova:users@1.1.0', | ||
]); | ||
|
||
api.imply([ | ||
'nova:lib@1.0.0' | ||
'nova:lib@1.1.0' | ||
]); | ||
|
||
api.mainModule('lib/server/main.js', 'server'); | ||
|
Oops, something went wrong.