Release v1.1.1-beta

This commit is contained in:
Christian Kaisermann 2019-06-19 10:42:04 -03:00
parent f38b08b3a1
commit cd89b4ca87
2 changed files with 4 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "svelte-i18n", "name": "svelte-i18n",
"version": "1.1.0", "version": "1.1.1-beta",
"main": "dist/i18n.js", "main": "dist/i18n.cjs.js",
"module": "src/index.js", "module": "src/index.js",
"license": "MIT", "license": "MIT",
"description": "Internationalization library for Svelte", "description": "Internationalization library for Svelte",
@ -39,8 +39,7 @@
], ],
"coveragePathIgnorePatterns": [ "coveragePathIgnorePatterns": [
"/node_modules/", "/node_modules/",
"/test/", "/test/"
"/src/formatter.js"
], ],
"coverageThreshold": { "coverageThreshold": {
"global": { "global": {

View File

@ -10,9 +10,8 @@ export default [
{ {
input: 'src/index.js', input: 'src/index.js',
external: [...Object.keys(pkg.dependencies), 'svelte/store'], external: [...Object.keys(pkg.dependencies), 'svelte/store'],
outpfut: [ output: [
{ file: pkg.main, format: 'cjs' }, { file: pkg.main, format: 'cjs' },
{ file: pkg.module, format: 'es' },
], ],
plugins, plugins,
}, },