Skip to content

Commit fd1a00f

Browse files
author
ryanjohnson
committed
3.0.1
1 parent 25c0689 commit fd1a00f

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
{
22
"name": "react-localize-redux",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Localization library for handling translations in React",
55
"main": "./lib/index.js",
66
"module": "./es/index.js",
77
"jsnext:main": "./es/index.js",
88
"typings": "lib/index.d.ts",
99
"scripts": {
10-
"build":
11-
"npm run build:commonjs && npm run build:es && npm run copy:flow && npm run build:umd && npm run build:umd:min && npm run copy:ts",
12-
"build:commonjs":
13-
"rimraf lib && cross-env BABEL_ENV=commonjs babel ./src -d lib",
10+
"build": "npm run build:commonjs && npm run build:es && npm run copy:flow && npm run build:umd && npm run build:umd:min && npm run copy:ts",
11+
"build:commonjs": "rimraf lib && cross-env BABEL_ENV=commonjs babel ./src -d lib",
1412
"build:es": "rimraf es && cross-env BABEL_ENV=es babel ./src -d es",
15-
"build:umd":
16-
"rimraf dist && webpack --env.dev --output-filename dist/ReactLocalizeRedux.js",
17-
"build:umd:min":
18-
"webpack --env.prod --output-filename dist/ReactLocalizeRedux.min.js",
19-
"copy:flow":
20-
"ncp ./src/index.js.flow ./lib/index.js.flow && ncp ./src/index.js.flow ./es/index.js.flow",
21-
"copy:ts":
22-
"ncp ./src/index.d.ts ./lib/index.d.ts && ncp ./src/index.d.ts ./es/index.d.ts",
13+
"build:umd": "rimraf dist && webpack --env.dev --output-filename dist/ReactLocalizeRedux.js",
14+
"build:umd:min": "webpack --env.prod --output-filename dist/ReactLocalizeRedux.min.js",
15+
"copy:flow": "ncp ./src/index.js.flow ./lib/index.js.flow && ncp ./src/index.js.flow ./es/index.js.flow",
16+
"copy:ts": "ncp ./src/index.d.ts ./lib/index.d.ts && ncp ./src/index.d.ts ./es/index.d.ts",
2317
"coverage": "jest && codecov",
2418
"prepublish": "npm run build",
2519
"test": "cross-env BABEL_ENV=test jest",
@@ -43,7 +37,12 @@
4337
"localization",
4438
"globalization"
4539
],
46-
"tags": ["react", "redux", "i18n", "localization"],
40+
"tags": [
41+
"react",
42+
"redux",
43+
"i18n",
44+
"localization"
45+
],
4746
"author": "Ryan Johnson",
4847
"license": "MIT",
4948
"bugs": {
@@ -91,9 +90,16 @@
9190
},
9291
"jest": {
9392
"verbose": true,
94-
"roots": ["tests/"],
95-
"modulePaths": ["src/", "node_modules"],
96-
"setupFiles": ["raf/polyfill"],
93+
"roots": [
94+
"tests/"
95+
],
96+
"modulePaths": [
97+
"src/",
98+
"node_modules"
99+
],
100+
"setupFiles": [
101+
"raf/polyfill"
102+
],
97103
"coverageDirectory": "./coverage/",
98104
"collectCoverage": true
99105
},

0 commit comments

Comments
 (0)