Merge branch 'prod-setup' of https://github.com/Chun-MingChen/react-bootstrap-table2 into Chun-MingChen-prod-setup

This commit is contained in:
AllenFang 2018-01-14 15:41:46 +08:00
commit 6c0fc4ffb4
9 changed files with 1193 additions and 630 deletions

6
.gitignore vendored
View File

@ -15,3 +15,9 @@ lerna-debug.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# gh-pages
storybook-static
# build
lib

View File

@ -3,5 +3,15 @@
"packages": [
"packages/*"
],
"version": "0.0.0"
"version": "independent",
"changelog": {
"repo": "react-bootstrap-table/react-bootstrap-table2",
"labels": {
"breaking change": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"document": ":memo: Documentation"
},
"cacheDir": ".changelog"
}
}

View File

@ -5,13 +5,18 @@
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap",
"publish": "lerna run build && lerna publish --silent",
"start": "node -r babel-register ./node_modules/.bin/webpack-dev-server --config webpack.config.babel.js",
"lint": "eslint ./packages --ext .js --ext .jsx --ignore-path .gitignore",
"pretest": "yarn lint --cache",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"storybook": "cd ./packages/react-bootstrap-table2-example && yarn storybook"
"storybook": "cd ./packages/react-bootstrap-table2-example && yarn storybook",
"gh-pages:clean": "cd ./packages/react-bootstrap-table2-example && yarn gh-pages:clean",
"gh-pages:build": "cd ./packages/react-bootstrap-table2-example && yarn gh-pages:build",
"gh-pages:deploy": "cd ./packages/react-bootstrap-table2-example && yarn gh-pages:deploy",
"gh-pages:publish": "yarn gh-pages:clean && yarn gh-pages:build && yarn gh-pages:deploy"
},
"repository": {
"type": "git",
@ -24,6 +29,7 @@
},
"homepage": "https://github.com/react-bootstrap-table/react-bootstrap-table2#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
@ -41,13 +47,16 @@
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.2.1",
"git-directory-deploy": "1.5.1",
"html-webpack-plugin": "2.30.1",
"jest": "20.0.4",
"jsdom": "11.2.0",
"jsdom-global": "3.0.2",
"lerna": "2.0.0",
"lerna-changelog": "^0.7.0",
"node-sass": "4.5.3",
"react-test-renderer": "16.0.0",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"sinon": "3.2.1",
"style-loader": "0.17.0",

View File

@ -3,10 +3,14 @@
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
"gh-pages:clean": "rimraf ./storybook-static",
"gh-pages:build": "build-storybook",
"gh-pages:deploy": "git-directory-deploy --directory storybook-static",
"gh-pages:publish": "yarn gh-pages:clean && yarn gh-pages:build && yarn gh-pages:deploy"
},
"author": "",
"license": "ISC",

View File

@ -2,10 +2,15 @@
"name": "react-bootstrap-table2-filter",
"version": "0.0.1",
"description": "it's the column filter addon for react-bootstrap-table2",
"main": "src/index.js",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"prepublish": "yarn build",
"build": "rimraf ./lib && babel ./src -d lib"
},
"author": "",
"license": "ISC"
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"rimraf": "2.6.2"
}
}

View File

@ -2,13 +2,18 @@
"name": "react-bootstrap-table2-overlay",
"version": "0.0.1",
"description": "it's a loading overlay component for react-bootstrap-table2",
"main": "src/index.js",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"prepublish": "yarn build",
"build": "rimraf ./lib && babel ./src -d lib"
},
"author": "",
"license": "ISC",
"dependencies": {
"react-loading-overlay": "0.2.8"
},
"devDependencies": {
"babel-cli": "6.26.0",
"rimraf": "2.6.2"
}
}

View File

@ -2,10 +2,15 @@
"name": "react-bootstrap-table2-paginator",
"version": "0.0.1",
"description": "it's the pagination addon for react-bootstrap-table2",
"main": "src/index.js",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"prepublish": "yarn build",
"build": "rimraf ./lib && babel ./src -d lib"
},
"author": "",
"license": "ISC"
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"rimraf": "2.6.2"
}
}

View File

@ -2,10 +2,15 @@
"name": "react-bootstrap-table2",
"version": "0.0.1",
"description": "Rebuilt for react-bootstrap-table",
"main": "src/index.js",
"main": "./lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"prepublish": "yarn build",
"build": "rimraf ./lib && babel ./src -d lib"
},
"author": "",
"license": "ISC"
"license": "ISC",
"devDependencies": {
"babel-cli": "6.26.0",
"rimraf": "2.6.2"
}
}

1746
yarn.lock

File diff suppressed because it is too large Load Diff