This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package): include css and redux at root
- Loading branch information
1 parent
9259b71
commit e70559b
Showing
4 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ node_modules | |
/build | ||
/lib | ||
/.tmp | ||
/style.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-block-ui", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": "Evan Sharp <[email protected]>", | ||
"description": "Block UI for react", | ||
"main": "lib/index.js", | ||
|
@@ -16,8 +16,8 @@ | |
"cleanup": "rimraf .nyc_output .tmp", | ||
"start": "webpack-dev-server --config ./webpack.dev.config.js --watch", | ||
"build:docs": "cross-env WEBPACK_BUILD=production webpack --config ./webpack.dev.config.js --colors", | ||
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --colors", | ||
"prebuild": "babel src --out-dir lib", | ||
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --colors && copyfiles -f src/style.css dist", | ||
"prebuild": "babel src --out-dir lib && copyfiles -f src/style.css lib && copyfiles -f src/style.css .", | ||
"create-release": "npm test && sh ./scripts/release", | ||
"publish-release": "npm test && sh ./scripts/publish" | ||
}, | ||
|
@@ -30,7 +30,9 @@ | |
"README.md", | ||
"CHANGELOG.md", | ||
"lib", | ||
"dist" | ||
"dist", | ||
"redux.js", | ||
"style.css" | ||
], | ||
"keywords": [ | ||
"availity", | ||
|
@@ -81,6 +83,7 @@ | |
"conventional-changelog-cli": "^1.1.1", | ||
"conventional-recommended-bump": "^0.2.0", | ||
"copy-webpack-plugin": "^3.0.1", | ||
"copyfiles": "^1.0.0", | ||
"coveralls": "^2.11.9", | ||
"cross-env": "^2.0.0", | ||
"css-loader": "^0.23.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict'; | ||
|
||
exports.__esModule = true; | ||
exports.BlockUiMiddleware = undefined; | ||
|
||
var _ReduxBlockUi = require('./lib/ReduxBlockUi'); | ||
|
||
var _ReduxBlockUi2 = _interopRequireDefault(_ReduxBlockUi); | ||
|
||
var _reduxMiddleware = require('./lib/reduxMiddleware'); | ||
|
||
var _reduxMiddleware2 = _interopRequireDefault(_reduxMiddleware); | ||
|
||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
||
exports.BlockUiMiddleware = _reduxMiddleware2.default; | ||
exports.default = _ReduxBlockUi2.default; |