Files
meteor/packages/google-config-ui/package.js
James Burgess 441ea43ed5 Modernize google-config-ui package
- Bumped patch version number 1.0.0 -> 1.0.1
- ES6 syntax and shorthand applied
- Fixed error in instructions - without the `?close` at the end of the redirect URI, the login popup throws an error
2018-02-02 09:30:13 +01:00

15 lines
349 B
JavaScript

Package.describe({
summary: "Blaze configuration templates for Google OAuth.",
version: "1.0.1",
});
Package.onUse(api => {
api.use('ecmascript', 'client');
api.use('templating@1.2.13', 'client');
api.addFiles('google_login_button.css', 'client');
api.addFiles(
['google_configure.html', 'google_configure.js'],
'client');
});