Hi all.
whilst trying to publish my new package, I get the following output:
=> Errors while publishing:
While pre-publishing package goatic:accounts-steam:
error: Match failed
I’ve included the package.js files of the package and it’s dependency as a reference - hopefully someone knows what I’m doing wrong.
Package.describe({
name: 'goatic:accounts-steam',
version: '1.0.0',
summary: 'Login service for Steam accounts',
git: null,
documentation: 'README.md'
})
Package.onUse(function(api) {
api.versionsFrom('1.2.0.1')
api.use('accounts-base', ['client','server'])
api.imply('accounts-base', ['client', 'server'])
api.use('accounts-oauth', ['client', 'server'])
api.use('ecmascript')
api.use('goatic:steam@1.0.0', ['client', 'server'])
api.addFiles('steam.js')
api.addFiles('steam_login_button.css','client')
})
the steam dependency-package is as follows:
Package.describe({
name: 'goatic:steam',
version: '1.0.0',
summary: 'Steam OAuth flow',
git: null,
documentation: null
})
Package.onUse(function(api) {
api.versionsFrom('1.2.0.2')
api.use('ecmascript')
api.use(['underscore', 'templating','random'],'client')
api.use('http', 'server')
api.use(['oauth', 'oauth2', 'service-configuration'], ['client','server'])
api.export('Steam')
api.addFiles(['steam_configure.html', 'steam_configure.js', 'steam_client.js'],'client')
api.addFiles('steam_server.js', 'server')
})