From 73977508c7a9bdf3010c029bc81fb98d59471b48 Mon Sep 17 00:00:00 2001 From: Matt Radford Date: Fri, 15 Jul 2016 13:33:44 -0700 Subject: [PATCH] Add forgotten equals sign --- main.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index d9dd030..ffa5709 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,4 @@ -module.exports { +module.exports = { install: function (Vue, locale_translations) { Vue.locale_translations = locale_translations; // FIXME: scope @@ -34,4 +34,4 @@ module.exports { return this.$t(key) }) } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 9251ffe..9d98017 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ }, "name": "voo-i18n", "description": "A small package for implementing translations in Vue.js", - "version": "1.0.1", + "version": "1.0.2", "repository": { "url": "git+https://github.com/MattyRad/vue-i18n.git" },