不知道我当前的项目使用哪些构建工具?
Don't know which build tools my current project uses?
我正在继续 react/redux 的项目。但是,不知道它使用了哪些构建工具?
无论是 webpack、Gulp、Grunt 等等?
这是我的 package.json 文件。
{
"name": "some-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"firebase": "^4.6.2",
"firebase-admin": "^5.4.3",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.5",
"react-bootstrap-table": "^4.1.3",
"react-document-title": "^2.0.3",
"react-dom": "^15.6.1",
"react-dropzone": "^4.2.1",
"react-firebase": "^2.2.7-4",
"react-firebase-file-uploader": "^2.4.1",
"react-notification-system-redux": "^1.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-form": "^7.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.12"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
Create React App - Zero Configuration?
If you’re working with React, you’re probably familiar with the
create-react-app. It’s an official command line interface for building
React applications with ZERO Configuration.
零配置?怎么可能?
create-react-app 将所有 webpack 配置隐藏到包 react-scripts 中。有了create-react-app,我可以毫不费力地享受Facebook创建的所有配置,不需要我自己配置。
但是...您无法更改 Facebook create-react-app 提供的默认配置。 Facebook 提供了 2 个选项来允许您更改默认配置...
参考:https://www.npmjs.com/package/create-react-scripts#zero-configuration-how-is-it-possible
我正在继续 react/redux 的项目。但是,不知道它使用了哪些构建工具? 无论是 webpack、Gulp、Grunt 等等?
这是我的 package.json 文件。
{
"name": "some-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"firebase": "^4.6.2",
"firebase-admin": "^5.4.3",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"moment": "^2.19.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.5",
"react-bootstrap-table": "^4.1.3",
"react-document-title": "^2.0.3",
"react-dom": "^15.6.1",
"react-dropzone": "^4.2.1",
"react-firebase": "^2.2.7-4",
"react-firebase-file-uploader": "^2.4.1",
"react-notification-system-redux": "^1.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-form": "^7.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.12"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}
Create React App - Zero Configuration?
If you’re working with React, you’re probably familiar with the create-react-app. It’s an official command line interface for building React applications with ZERO Configuration.
零配置?怎么可能?
create-react-app 将所有 webpack 配置隐藏到包 react-scripts 中。有了create-react-app,我可以毫不费力地享受Facebook创建的所有配置,不需要我自己配置。
但是...您无法更改 Facebook create-react-app 提供的默认配置。 Facebook 提供了 2 个选项来允许您更改默认配置...
参考:https://www.npmjs.com/package/create-react-scripts#zero-configuration-how-is-it-possible