Skip to content

Commit 8e3f3d0

Browse files
authored
Version v1.5.0 Beta 3 (#154)
* Switched to using `.npmignore` instead of `files` and `filesMap` fields in package.json to get typescript typings to be published - #142
1 parent 9d48234 commit 8e3f3d0

File tree

2 files changed

+32
-57
lines changed

2 files changed

+32
-57
lines changed

.npmignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
docs
2+
bin
3+
tests
4+
examples
5+
coverage
6+
_book

package.json

Lines changed: 26 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-redux-firebase",
3-
"version": "1.5.0-beta.2",
3+
"version": "1.5.0-beta.3",
44
"description": "Redux integration for Firebase. Comes with a Higher Order Component for use with React.",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -29,25 +29,30 @@
2929
"docs:watch": "npm run docs:prepare && gitbook serve",
3030
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:prescottprue/react-redux-firebase gh-pages --force"
3131
},
32-
"contributors": [
33-
{
34-
"name": "Prescott Prue",
35-
"email": "[email protected]",
36-
"url": "https://github.com/prescottprue"
37-
},
38-
{
39-
"name": "Bojhan",
40-
"url": "https://github.com/Bojhan"
41-
},
42-
{
43-
"name": "Marshall",
44-
"email": "[email protected]",
45-
"url": "https://github.com/mmoutenot"
46-
},
47-
{
48-
"name": "Rahav Lussato",
49-
"url": "https://github.com/RahavLussato"
50-
}
32+
"license": "MIT",
33+
"homepage": "https://github.com/prescottprue/react-redux-firebase#readme",
34+
"repository": {
35+
"type": "git",
36+
"url": "git+https://github.com/prescottprue/react-redux-firebase.git"
37+
},
38+
"bugs": {
39+
"url": "https://github.com/prescottprue/react-redux-firebase/issues"
40+
},
41+
"author": {
42+
"name": "Prescott Prue",
43+
"email": "[email protected]",
44+
"url": "https://github.com/prescottprue"
45+
},
46+
"keywords": [
47+
"firebase",
48+
"redux",
49+
"react",
50+
"react-redux",
51+
"redux-firebase",
52+
"react",
53+
"babel",
54+
"hoc",
55+
"redux-react-firebase"
5156
],
5257
"dependencies": {
5358
"es6-promise": "^4.1.0",
@@ -109,41 +114,5 @@
109114
"webpack-bundle-analyzer": "^2.3.1",
110115
"ws": "^3.0.0",
111116
"xmlhttprequest": "^1.8.0"
112-
},
113-
"license": "MIT",
114-
"repository": {
115-
"type": "git",
116-
"url": "git+https://github.com/prescottprue/react-redux-firebase.git"
117-
},
118-
"bugs": {
119-
"url": "https://github.com/prescottprue/react-redux-firebase/issues"
120-
},
121-
"homepage": "https://github.com/prescottprue/react-redux-firebase#readme",
122-
"keywords": [
123-
"firebase",
124-
"redux",
125-
"react",
126-
"react-redux",
127-
"redux-firebase",
128-
"react",
129-
"babel",
130-
"hoc",
131-
"react-redux-firebase"
132-
],
133-
"npmName": "react-redux-firebase",
134-
"files": [
135-
"dist",
136-
"src",
137-
"es",
138-
"lib",
139-
"./index.d.ts"
140-
],
141-
"npmFileMap": [
142-
{
143-
"basePath": "/dist/",
144-
"files": [
145-
"*.js"
146-
]
147-
}
148-
]
117+
}
149118
}

0 commit comments

Comments
 (0)