Skip to content

Commit c398750

Browse files
committed
Release 1.0.25
1 parent f2daf1c commit c398750

File tree

2 files changed

+28
-10
lines changed

2 files changed

+28
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
<a name="1.0.25"></a>
2+
## 1.0.25 (2019-01-16)
3+
4+
* chore: invert order of 'yarn' and 'npm' install ([2f8f94a](https://github.com/matteocng/react-flag-icon-css/commit/2f8f94a))
5+
* chore: remove node 9 and add node 11 to 'travis' (ava does not support node 9) ([8c51a9e](https://github.com/matteocng/react-flag-icon-css/commit/8c51a9e))
6+
* chore: upgrade 'babel' to version 7, 'ava' to version 1, 'react' and other modules ([7d705b3](https://github.com/matteocng/react-flag-icon-css/commit/7d705b3)), closes [#110](https://github.com/matteocng/react-flag-icon-css/issues/110)
7+
* chore(package): update 'flow-bin' to version 0.77.0 ([b3a96d8](https://github.com/matteocng/react-flag-icon-css/commit/b3a96d8))
8+
* chore(package): update babel-eslint to version 9.0.0 ([8cfce57](https://github.com/matteocng/react-flag-icon-css/commit/8cfce57))
9+
* chore(package): update eslint-config-prettier to version 3.0.0 ([b21bb53](https://github.com/matteocng/react-flag-icon-css/commit/b21bb53))
10+
* chore(package): update eslint-plugin-flowtype to version 3.0.0 ([ebd484e](https://github.com/matteocng/react-flag-icon-css/commit/ebd484e))
11+
* chore(package): update lockfile package-lock.json ([f578807](https://github.com/matteocng/react-flag-icon-css/commit/f578807))
12+
* chore(package): update lockfiles ([f2daf1c](https://github.com/matteocng/react-flag-icon-css/commit/f2daf1c))
13+
* chore(package): update lockfiles ([59d9ddf](https://github.com/matteocng/react-flag-icon-css/commit/59d9ddf))
14+
* chore(package): update postcss-cli to version 6.0.0 ([890c05f](https://github.com/matteocng/react-flag-icon-css/commit/890c05f))
15+
* docs: add links to the 'webpack 4' example ([eb7390b](https://github.com/matteocng/react-flag-icon-css/commit/eb7390b))
16+
17+
18+
119
<a name="1.0.24"></a>
220
## <small>1.0.24 (2018-07-17)</small>
321

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-flag-icon-css",
33
"description": "React SVG country flags component",
44
"homepage": "https://github.com/matteocng/react-flag-icon-css#readme",
5-
"version": "1.0.24",
5+
"version": "1.0.25",
66
"main": "./lib",
77
"module": "./module",
88
"author": {
@@ -107,26 +107,21 @@
107107
"postbuild:module": "npm run styles && flow-copy-source --ignore *__tests__/**/* -v src module",
108108
"postcoverage": "npm run coverage:codecov && npm run coverage:coveralls",
109109
"posttest:ci": "npm run lint && npm run flow && npm run prettier:check",
110-
"prebuild:common": "npm run generate:types && npm run flow",
111110
"prebuild": "npm run clean && npm run prebuild:common",
111+
"prebuild:common": "npm run generate:types && npm run flow",
112112
"prebuild:module": "npm run clean:module && npm run prebuild:common",
113113
"precoverage": "mkdirp .nyc_output",
114114
"prepublishOnly": "npm run test:ci && npm run audit && npm run build && npm run build:module",
115115
"prettier": "cross-env BABEL_ENV=build babel-node ./scripts/tasks/prettier.js write",
116116
"prettier:check": "cross-env BABEL_ENV=build babel-node ./scripts/tasks/prettier.js",
117117
"styles": "postcss -o lib/styles/main.css src/styles/main.css && cpy lib/styles/main.css module/styles/",
118-
"test:ci": "cross-env BABEL_ENV=testing nyc ava",
119118
"test": "cross-env BABEL_ENV=testing ava",
120-
"watch:test": "npm run test -- --watch",
121-
"test:update:snapshots": "npm run test -- --update-snapshots"
119+
"test:ci": "cross-env BABEL_ENV=testing nyc ava",
120+
"test:update:snapshots": "npm run test -- --update-snapshots",
121+
"watch:test": "npm run test -- --watch"
122122
},
123123
"license": "MIT",
124124
"ava": {
125-
"require": [
126-
"@babel/register",
127-
"esm",
128-
"./src/__tests__/index.js"
129-
],
130125
"babel": {
131126
"testOptions": {
132127
"presets": [
@@ -141,6 +136,11 @@
141136
},
142137
"files": [
143138
"**/*.test.js"
139+
],
140+
"require": [
141+
"@babel/register",
142+
"esm",
143+
"./src/__tests__/index.js"
144144
]
145145
},
146146
"nyc": {

0 commit comments

Comments
 (0)