Skip to content

Commit

Permalink
bumbed package version from 2.1.9 => 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanschwarz committed Dec 17, 2021
1 parent 1bd304b commit 6ea7211
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
Package.describe({
name: 'nschwarz:cluster',
version: '2.1.9',
version: '2.2.0',
summary: 'native nodejs clusterization for meteor server',
git: 'https://github.com/nathanschwarz/meteor-cluster.git',
documentation: 'README.md'
documentation: 'README.md',
})

Package.onUse(api => {
api.versionsFrom('1.9')
api.use([ 'mongo', 'ecmascript', 'random' ])
api.use(['mongo', 'ecmascript', 'random'])
api.mainModule('src/index.js', 'server')
})

Npm.depends({
debug: '4.3.1'
debug: '4.3.1',
})

Package.onTest(api => {
api.use('nschwarz:cluster')
api.use([ 'ecmascript' ])
api.mainModule('src/tests/_index.js')
api.use('nschwarz:cluster')
api.use(['ecmascript'])
api.mainModule('src/tests/_index.js')
})

0 comments on commit 6ea7211

Please sign in to comment.