Navigation Menu

Skip to content

Commit

Permalink
Update links to the wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianheine committed Dec 8, 2017
1 parent d0ba36b commit 47d7ba8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/src/help.md
Expand Up @@ -54,4 +54,4 @@ Notes:

* When piping to stdout, only inline sourcemaps are permitted

For more information visit https://github.com/rollup/rollup/wiki
For more information visit https://rollupjs.org
2 changes: 1 addition & 1 deletion bin/src/run/loadConfigFile.js
Expand Up @@ -46,7 +46,7 @@ export default function loadConfigFile (configFile, silent) {
handleError({
code: 'MISSING_CONFIG',
message: 'Config file must export an options object, or an array of options objects',
url: 'https://github.com/rollup/rollup/wiki/Command-Line-Interface#using-a-config-file'
url: 'https://rollupjs.org/#using-config-files'
});
}

Expand Down
4 changes: 2 additions & 2 deletions src/rollup/index.js
Expand Up @@ -106,14 +106,14 @@ function checkOutputOptions ( options, warn ) {
if ( options.format === 'es6' ) {
error( {
message: 'The `es6` output format is deprecated – use `es` instead',
url: `https://github.com/rollup/rollup/wiki/JavaScript-API#format`
url: `https://rollupjs.org/#format-f-output-format-`
} );
}

if ( !options.format ) {
error( {
message: `You must specify options.format, which can be one of 'amd', 'cjs', 'es', 'iife' or 'umd'`,
url: `https://github.com/rollup/rollup/wiki/JavaScript-API#format`
url: `https://rollupjs.org/#format-f-output-format-`
} );
}

Expand Down
2 changes: 1 addition & 1 deletion src/utils/getExportMode.js
Expand Up @@ -31,7 +31,7 @@ export default function getExportMode ( bundle, {exports: exportMode, name, form
bundle.warn({
code: 'MIXED_EXPORTS',
message: `Using named and default exports together. Consumers of your bundle will have to use ${name || 'bundle'}['default'] to access the default export, which may not be what you want. Use \`exports: 'named'\` to disable this warning`,
url: `https://github.com/rollup/rollup/wiki/JavaScript-API#exports`
url: `https://rollupjs.org/#exports`
});
}
exportMode = 'named';
Expand Down
Expand Up @@ -4,7 +4,7 @@ module.exports = {
{
code: 'MIXED_EXPORTS',
message: `Using named and default exports together. Consumers of your bundle will have to use bundle['default'] to access the default export, which may not be what you want. Use \`exports: 'named'\` to disable this warning`,
url: `https://github.com/rollup/rollup/wiki/JavaScript-API#exports`
url: `https://rollupjs.org/#exports`
}
]
};

0 comments on commit 47d7ba8

Please sign in to comment.