Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump serialize-javascript from 1.7.0 to 5.0.1 in /examples/minimal #355

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "4.0.0-beta.0"
}
}
2,932 changes: 1,416 additions & 1,516 deletions examples/minimal/yarn.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion modules/dev-tools/src/configuration/get-babel-config.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* Returns a default babel config
* @param api babel parameter, to be passed through
* @param api this is babel parameter that should just be passed through
* @param options.react Set to `true` to include React presets
*/
export function getBabelConfig(
api,
Expand Down
2 changes: 1 addition & 1 deletion modules/dev-tools/src/configuration/get-eslint-config.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Returns a default eslint config
* @param options.react - enable react. String representing react version, e.g. "16.8.2"
* @param options.react - to enable React linting, supply a string specifying your React version, e.g. "16.8.2"
*/
export function getESLintConfig(options?: {
react?: string;
Expand Down
6 changes: 3 additions & 3 deletions modules/dev-tools/src/configuration/get-ocular-config.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Returns a default ocular config object
* @param opts.root - path to package root, default `pwd`
* @param opts.aliasMode - default `src`
* @param options.root - path to package root, default `pwd`
* @param options.aliasMode - default `src`
*/
export function getOcularConfig(opts?: object): {[key: string]: any};
export function getOcularConfig(options?: object): {[key: string]: any};
6 changes: 3 additions & 3 deletions modules/dev-tools/src/configuration/get-webpack-config.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Returns a default webpack configuration object
* @param env
* @param opts
* @param env this is a webpack parameter that should just be passed through
* @param options application options controlling the generated configuration
*/
export function getWebpackConfig(env?: object, opts?: object): {[key: string]: any};
export function getWebpackConfig(env?: object, options?: object): {[key: string]: any};
1,114 changes: 48 additions & 1,066 deletions yarn.lock

Large diffs are not rendered by default.