Skip to content

Commit 9d05a2b

Browse files
authored
build(package.json): Add es folder to published package (#56)
* build(package.json): Add es folder to published package Add the es folder to the list of files exported by npm publish. Also add it to the clean command. * fix(package.json): 1.0.1 * Fix changelog
1 parent 114365a commit 9d05a2b

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
<a name="1.0.1"></a>
2+
3+
## [1.0.1](https://github.com/nfl/react-gpt/compare/v1.0.0...v1.0.1) (2017-09-19)
4+
5+
6+
### Bug Fixes
7+
8+
* **package.json:** Add es folder to published package ([2aa1a03](https://github.com/nfl/react-gpt/commit/2aa1a03))
9+
110
<a name="1.0.0"></a>
211
## [1.0.0](https://github.com/nfl/react-gpt/compare/v0.3.0...v1.0.0) (2017-09-18)
312

413
### Features
514

6-
* Export AdManager ([9ed1807](https://github.com/nfl/react-gpt/commit/9ed1807))
7-
* Build and export es modules ([2d7a3ec](https://github.com/nfl/react-gpt/commit/2d7a3ec))
15+
* **createManager:** Export AdManager ([#53](https://github.com/nfl/react-gpt/issues/53)) ([9ed1807](https://github.com/nfl/react-gpt/commit/9ed1807)), closes [#42](https://github.com/nfl/react-gpt/issues/42)
16+
* **package.json:** Add Yarn ([#38](https://github.com/nfl/react-gpt/issues/38)) ([8b7a570](https://github.com/nfl/react-gpt/commit/8b7a570))
17+
* **package.json:** Export es modules ([#54](https://github.com/nfl/react-gpt/issues/54)) ([2d7a3ec](https://github.com/nfl/react-gpt/commit/2d7a3ec)), closes [#29](https://github.com/nfl/react-gpt/issues/29)
18+
819

920
<a name="0.3.0"></a>
1021
## [0.3.0](https://github.com/nfl/react-gpt/compare/v0.2.5...v0.3.0) (2017-09-18)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-gpt",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A react display ad component using Google Publisher Tag",
55
"main": "lib/index.js",
66
"jsnext:main": "es/index.js",
@@ -28,6 +28,7 @@
2828
"files": [
2929
"*.md",
3030
"docs",
31+
"es",
3132
"src",
3233
"dist",
3334
"lib"
@@ -108,7 +109,7 @@
108109
"build:umd": "NODE_ENV=development webpack src/index.js dist/react-gpt.js",
109110
"build:umd:min": "NODE_ENV=production webpack -p src/index.js dist/react-gpt.min.js",
110111
"bundlesize": "npm run build:umd:min && bundlesize",
111-
"clean": "rimraf lib coverage",
112+
"clean": "rimraf lib coverage dist lib es",
112113
"compile": "babel src --out-dir lib",
113114
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples/apps --inline",
114115
"lint": "eslint --fix src test examples",

0 commit comments

Comments
 (0)