mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
compile with babel
This commit is contained in:
parent
383cfbab57
commit
a37ef6883d
3
.gitignore
vendored
3
.gitignore
vendored
@ -18,3 +18,6 @@ yarn-error.log*
|
|||||||
|
|
||||||
# gh-pages
|
# gh-pages
|
||||||
storybook-static
|
storybook-static
|
||||||
|
|
||||||
|
# build
|
||||||
|
lib
|
||||||
|
|||||||
@ -5,6 +5,7 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "lerna bootstrap",
|
"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",
|
"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",
|
"lint": "eslint ./packages --ext .js --ext .jsx --ignore-path .gitignore",
|
||||||
"pretest": "yarn lint --cache",
|
"pretest": "yarn lint --cache",
|
||||||
|
|||||||
@ -3,6 +3,7 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"storybook": "start-storybook -p 6006",
|
"storybook": "start-storybook -p 6006",
|
||||||
|
|||||||
@ -2,10 +2,15 @@
|
|||||||
"name": "react-bootstrap-table2-filter",
|
"name": "react-bootstrap-table2-filter",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "it's the column filter addon for react-bootstrap-table2",
|
"description": "it's the column filter addon for react-bootstrap-table2",
|
||||||
"main": "src/index.js",
|
"main": "./lib",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"prepublish": "yarn build",
|
||||||
|
"build": "rimraf ./lib && babel ./src -d lib"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC"
|
"license": "ISC",
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "6.26.0",
|
||||||
|
"rimraf": "2.6.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,13 +2,18 @@
|
|||||||
"name": "react-bootstrap-table2-overlay",
|
"name": "react-bootstrap-table2-overlay",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "it's a loading overlay component for react-bootstrap-table2",
|
"description": "it's a loading overlay component for react-bootstrap-table2",
|
||||||
"main": "src/index.js",
|
"main": "./lib",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"prepublish": "yarn build",
|
||||||
|
"build": "rimraf ./lib && babel ./src -d lib"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react-loading-overlay": "0.2.8"
|
"react-loading-overlay": "0.2.8"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "6.26.0",
|
||||||
|
"rimraf": "2.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,10 +2,15 @@
|
|||||||
"name": "react-bootstrap-table2-paginator",
|
"name": "react-bootstrap-table2-paginator",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "it's the pagination addon for react-bootstrap-table2",
|
"description": "it's the pagination addon for react-bootstrap-table2",
|
||||||
"main": "src/index.js",
|
"main": "./lib",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"prepublish": "yarn build",
|
||||||
|
"build": "rimraf ./lib && babel ./src -d lib"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC"
|
"license": "ISC",
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "6.26.0",
|
||||||
|
"rimraf": "2.6.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,10 +2,15 @@
|
|||||||
"name": "react-bootstrap-table2",
|
"name": "react-bootstrap-table2",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Rebuilt for react-bootstrap-table",
|
"description": "Rebuilt for react-bootstrap-table",
|
||||||
"main": "src/index.js",
|
"main": "./lib",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"prepublish": "yarn build",
|
||||||
|
"build": "rimraf ./lib && babel ./src -d lib"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC"
|
"license": "ISC",
|
||||||
|
"devDependencies": {
|
||||||
|
"babel-cli": "6.26.0",
|
||||||
|
"rimraf": "2.6.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user