Skip to content

Commit

Permalink
Published
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Jan 28, 2018
1 parent d7a5d09 commit c4ebb7d
Show file tree
Hide file tree
Showing 18 changed files with 323 additions and 46 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p align="center"><img src="https://github.com/Akryum/vue-meteor/raw/master/vue%2Bmeteor.png"></p>

<p align="center">
<a href="https://meteor.com/"><img src="https://img.shields.io/badge/meteor-1.6-blue.svg"/></a>
<a href="https://vuejs.org/"><img src="https://img.shields.io/badge/vue-1.x-green.svg"/> <img src="https://img.shields.io/badge/vue-2.5.8-brightgreen.svg"/></a>
<a href="https://meteor.com/"><img src="https://img.shields.io/badge/meteor-1.6.1-blue.svg"/></a>
<a href="https://vuejs.org/"><img src="https://img.shields.io/badge/vue-1.x-green.svg"/> <img src="https://img.shields.io/badge/vue-2.5.13-brightgreen.svg"/></a>
</p>

<br/>
Expand Down
6 changes: 5 additions & 1 deletion packages/vue-blaze-template/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Package.describe({

Package.onUse(function (api) {
api.versionsFrom('1.6')
api.use(['ecmascript', 'templating', 'blaze'])
api.use([
'ecmascript',
'[email protected]',
'[email protected]',
])
api.mainModule('vue-render-blaze.js', 'client')
})
8 changes: 4 additions & 4 deletions packages/vue-component-dev-client/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Package.describe({
})

Package.onUse(function (api) {
api.use('ecmascript')
api.use('reload')
api.use('autoupdate')
api.use('reactive-var')
api.use('ecmascript@0.10.0')
api.use('reload@1.2.0')
api.use('autoupdate@1.4.0')
api.use('reactive-var@1.0.11')
api.mainModule('client/dev-client.js', 'client')
})

Expand Down
4 changes: 2 additions & 2 deletions packages/vue-component-dev-server/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Package.describe({
})

Package.onUse(function (api) {
api.use('ecmascript')
api.use('webapp')
api.use('ecmascript@0.10.0')
api.use('webapp@1.5.0')
api.mainModule('server/main.js', 'server')
})
74 changes: 38 additions & 36 deletions packages/vue-component/.versions
Original file line number Diff line number Diff line change
@@ -1,53 +1,55 @@
akryum:vue-component@0.12.2
akryum:vue-component-dev-client@0.3.0
akryum:vue-component-dev-server@0.0.11
allow-deny@1.0.9
autoupdate@1.3.12
babel-compiler@6.20.0
babel-runtime@1.0.1
akryum:vue-component@0.13.0
akryum:vue-component-dev-client@0.4.0
akryum:vue-component-dev-server@0.1.0
allow-deny@1.1.0
autoupdate@1.4.0
babel-compiler@7.0.0
babel-runtime@1.2.0
[email protected]
[email protected]
[email protected]
boilerplate-generator@1.2.0
[email protected].9
callback-hook@1.0.10
check@1.2.5
ddp@1.3.1
ddp-client@2.1.3
ddp-common@1.2.9
ddp-server@2.0.2
boilerplate-generator@1.4.0
[email protected].11
callback-hook@1.1.0
check@1.3.0
ddp@1.4.0
ddp-client@2.3.1
ddp-common@1.4.0
ddp-server@2.1.2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
http@1.2.12
id-map@1.0.9
http@1.4.0
id-map@1.1.0
[email protected]
meteor@1.7.2
minimongo@1.3.3
modules@0.10.0
modules-runtime@0.8.0
mongo@1.2.2
mongo-dev-server@1.0.1
meteor@1.8.2
minimongo@1.4.3
modules@0.11.3
modules-runtime@0.9.1
mongo@1.4.2
mongo-dev-server@1.1.0
[email protected]
[email protected]
ordered-dict@1.0.9
promise@0.9.0
random@1.0.10
ordered-dict@1.1.0
promise@0.10.1
random@1.1.0
[email protected]
reload@1.1.11
retry@1.0.9
reload@1.2.0
retry@1.1.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
url@1.1.0
webapp@1.3.19
url@1.2.0
webapp@1.5.0
[email protected]
2 changes: 1 addition & 1 deletion packages/vue-router2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Package.registerBuildPlugin({

Package.onUse(function (api) {
api.use('isobuild:[email protected]')
api.use('ecmascript')
api.use('ecmascript@0.10.0')
api.use('akryum:[email protected]')
api.mainModule('client/client.js', 'client')
api.export(['Router', 'nativeScrollBehavior'], 'client')
Expand Down
Loading

0 comments on commit c4ebb7d

Please sign in to comment.