generator-folklore 3.0.0-alpha.0 → 3.0.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/generators/babel/index.js +2 -4
- package/lib/generators/browserslist/templates/browserslistrc +8 -8
- package/lib/generators/build/index.js +45 -243
- package/lib/generators/docs/index.js +2 -6
- package/lib/generators/eslint/index.js +2 -10
- package/lib/generators/js/index.js +2 -6
- package/lib/generators/laravel-panneau/index.js +1 -3
- package/lib/generators/lerna-repository/index.js +1 -3
- package/lib/generators/npm-package/index.js +2 -6
- package/lib/generators/prettier/index.js +35 -0
- package/lib/generators/{eslint → prettier}/templates/prettierrc.json +0 -0
- package/lib/generators/react-package/index.js +2 -6
- package/lib/generators/storybook/index.js +1 -3
- package/lib/generators/stylelint/index.js +2 -4
- package/lib/generators/test/index.js +1 -3
- package/package.json +2 -2
- package/lib/generators/build/templates/config.js +0 -78
- package/lib/generators/build/templates/env.js +0 -90
- package/lib/generators/build/templates/paths.js +0 -92
- package/lib/generators/build/templates/polyfills.js +0 -25
- package/lib/generators/build/templates/postcss.config.js +0 -12
- package/lib/generators/build/templates/scripts/build.js +0 -158
- package/lib/generators/build/templates/scripts/imagemin.js +0 -59
- package/lib/generators/build/templates/scripts/modernizr.js +0 -22
- package/lib/generators/build/templates/scripts/server.js +0 -176
- package/lib/generators/build/templates/utils/getConfigValue.js +0 -5
- package/lib/generators/build/templates/utils/getLocalIdent.js +0 -11
- package/lib/generators/build/templates/webpack.config.dev.js +0 -394
- package/lib/generators/build/templates/webpack.config.prod.js +0 -571
- package/lib/generators/build/templates/webpackDevServer.config.js +0 -109
@@ -1,109 +0,0 @@
|
|
1
|
-
/* eslint-disable import/no-extraneous-dependencies, import/no-dynamic-require, global-require */
|
2
|
-
const fs = require('fs');
|
3
|
-
const errorOverlayMiddleware = require('react-dev-utils/errorOverlayMiddleware');
|
4
|
-
const evalSourceMapMiddleware = require('react-dev-utils/evalSourceMapMiddleware');
|
5
|
-
const noopServiceWorkerMiddleware = require('react-dev-utils/noopServiceWorkerMiddleware');
|
6
|
-
const ignoredFiles = require('react-dev-utils/ignoredFiles');
|
7
|
-
const { proxy: serverProxy, browserHost, ...config } = require('./config').webpackDevServer;
|
8
|
-
const webpackConfig = require('./webpack.config.dev');
|
9
|
-
const paths = require('./paths');
|
10
|
-
|
11
|
-
const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
|
12
|
-
const host = process.env.HOST || '0.0.0.0';
|
13
|
-
|
14
|
-
module.exports = (proxy, allowedHost) => ({
|
15
|
-
// WebpackDevServer 2.4.3 introduced a security fix that prevents remote
|
16
|
-
// websites from potentially accessing local content through DNS rebinding:
|
17
|
-
// https://github.com/webpack/webpack-dev-server/issues/887
|
18
|
-
// https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a
|
19
|
-
// However, it made several existing use cases such as development in cloud
|
20
|
-
// environment or subdomains in development significantly more complicated:
|
21
|
-
// https://github.com/facebook/create-react-app/issues/2271
|
22
|
-
// https://github.com/facebook/create-react-app/issues/2233
|
23
|
-
// While we're investigating better solutions, for now we will take a
|
24
|
-
// compromise. Since our WDS configuration only serves files in the `public`
|
25
|
-
// folder we won't consider accessing them a vulnerability. However, if you
|
26
|
-
// use the `proxy` feature, it gets more dangerous because it can expose
|
27
|
-
// remote code execution vulnerabilities in backends like Django and Rails.
|
28
|
-
// So we will disable the host check normally, but enable it if you have
|
29
|
-
// specified the `proxy` setting. Finally, we let you override it if you
|
30
|
-
// really know what you're doing with a special environment variable.
|
31
|
-
disableHostCheck:
|
32
|
-
!proxy || process.env.DANGEROUSLY_DISABLE_HOST_CHECK === 'true',
|
33
|
-
// Enable gzip compression of generated files.
|
34
|
-
compress: true,
|
35
|
-
// Silence WebpackDevServer's own logs since they're generally not useful.
|
36
|
-
// It will still show compile warnings and errors with this setting.
|
37
|
-
clientLogLevel: 'none',
|
38
|
-
// By default WebpackDevServer serves physical files from current directory
|
39
|
-
// in addition to all the virtual build products that it serves from memory.
|
40
|
-
// This is confusing because those files won’t automatically be available in
|
41
|
-
// production build folder unless we copy them. However, copying the whole
|
42
|
-
// project directory is dangerous because we may expose sensitive files.
|
43
|
-
// Instead, we establish a convention that only files in `public` directory
|
44
|
-
// get served. Our build script will copy `public` into the `build` folder.
|
45
|
-
// In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
|
46
|
-
// <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
47
|
-
// In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
|
48
|
-
// Note that we only recommend to use `public` folder as an escape hatch
|
49
|
-
// for files like `favicon.ico`, `manifest.json`, and libraries that are
|
50
|
-
// for some reason broken when imported through Webpack. If you just want to
|
51
|
-
// use an image, put it in `src` and `import` it from JavaScript instead.
|
52
|
-
contentBase: paths.appPublic,
|
53
|
-
// By default files from `contentBase` will not trigger a page reload.
|
54
|
-
watchContentBase: true,
|
55
|
-
// Enable hot reloading server. It will provide /sockjs-node/ endpoint
|
56
|
-
// for the WebpackDevServer client so it can learn when the files were
|
57
|
-
// updated. The WebpackDevServer client is included as an entry point
|
58
|
-
// in the Webpack development configuration. Note that only changes
|
59
|
-
// to CSS are currently hot reloaded. JS changes will refresh the browser.
|
60
|
-
hot: true,
|
61
|
-
// Use 'ws' instead of 'sockjs-node' on server since we're using native
|
62
|
-
// websockets in `webpackHotDevClient`.
|
63
|
-
transportMode: 'ws',
|
64
|
-
// It is important to tell WebpackDevServer to use the same "root" path
|
65
|
-
// as we specified in the config. In development, we always serve from /.
|
66
|
-
publicPath: webpackConfig.output.publicPath,
|
67
|
-
// WebpackDevServer is noisy by default so we emit custom message instead
|
68
|
-
// by listening to the compiler events with `compiler.hooks[...].tap` calls above.
|
69
|
-
quiet: true,
|
70
|
-
// Reportedly, this avoids CPU overload on some systems.
|
71
|
-
// https://github.com/facebook/create-react-app/issues/293
|
72
|
-
// src/node_modules is not ignored to support absolute imports
|
73
|
-
// https://github.com/facebook/create-react-app/issues/1065
|
74
|
-
watchOptions: {
|
75
|
-
ignored: [ignoredFiles(paths.appSrc), paths.appPublic],
|
76
|
-
},
|
77
|
-
// Enable HTTPS if the HTTPS environment variable is set to 'true'
|
78
|
-
https: protocol === 'https',
|
79
|
-
host,
|
80
|
-
overlay: false,
|
81
|
-
historyApiFallback: {
|
82
|
-
// Paths with dots should still use the history fallback.
|
83
|
-
// See https://github.com/facebook/create-react-app/issues/387.
|
84
|
-
disableDotRule: true,
|
85
|
-
},
|
86
|
-
public: allowedHost,
|
87
|
-
...(proxy !== null ? {
|
88
|
-
proxy,
|
89
|
-
} : null),
|
90
|
-
before(app, server) {
|
91
|
-
if (fs.existsSync(paths.proxySetup)) {
|
92
|
-
// This registers user provided middleware for proxy reasons
|
93
|
-
require(paths.proxySetup)(app);
|
94
|
-
}
|
95
|
-
|
96
|
-
// This lets us fetch source contents from webpack for the error overlay
|
97
|
-
app.use(evalSourceMapMiddleware(server));
|
98
|
-
// This lets us open files from the runtime error overlay.
|
99
|
-
app.use(errorOverlayMiddleware());
|
100
|
-
|
101
|
-
// This service worker file is effectively a 'no-op' that will reset any
|
102
|
-
// previous service worker registered for the same host:port combination.
|
103
|
-
// We do this in development to avoid hitting the production cache if
|
104
|
-
// it used the same host and port.
|
105
|
-
// https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432
|
106
|
-
app.use(noopServiceWorkerMiddleware());
|
107
|
-
},
|
108
|
-
...config,
|
109
|
-
});
|