Skip to content

Commit

Permalink
feat: add context option (options.context) (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Oct 19, 2017
2 parents 8794e5f + 5c54e92 commit 10cd1a2
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Or, in the simple case of just a `from` with the default destination, you can us
| `from` | Y | | _examples:_<br>'relative/file.txt'<br>'/absolute/file.txt'<br>'relative/dir'<br>'/absolute/dir'<br>'\*\*/\*'<br>{glob:'\*\*/\*', dot: true}<br><br>Globs accept [minimatch options](https://github.com/isaacs/minimatch) |
| `to` | N | output root if `from` is file or dir<br><br>resolved glob path if `from` is glob | _examples:_<br>'relative/file.txt'<br>'/absolute/file.txt'<br>'relative/dir'<br>'/absolute/dir'<br>'relative/[name].[ext]'<br>'/absolute/[name].[ext]'<br><br>Templates are [file-loader patterns](https://github.com/webpack/file-loader) |
| `toType` | N | **'file'** if `to` has extension or `from` is file<br><br>**'dir'** if `from` is directory, `to` has no extension or ends in '/'<br><br>**'template'** if `to` contains [a template pattern](https://github.com/webpack/file-loader) | |
| `context` | N | compiler.options.context | A path that determines how to interpret the `from` path |
| `context` | N | options.context \|\| compiler.options.context | A path that determines how to interpret the `from` path |
| `flatten` | N | false | Removes all directory references and only copies file names<br><br>If files have the same name, the result is non-deterministic |
| `ignore` | N | [] | Additional globs to ignore for this pattern |
| `transform` | N | function(content, path) {<br>&nbsp;&nbsp;return content;<br>} | Function that modifies file contents before writing to webpack |
Expand All @@ -47,6 +47,7 @@ Or, in the simple case of just a `from` with the default destination, you can us

| Name | Default | Details |
| ---- | ------- | ------- |
| `context` | compiler.options.context | A path that determines how to interpret the `from` path, shared for all patterns |
| `ignore` | [] | Array of globs to ignore (applied to `from`) |
| `copyUnmodified` | false | Copies files, regardless of modification when using watch or webpack-dev-server. All files are copied on first build, regardless of this option. |
| `debug` | **'warning'** | _options:_<br>**'warning'** - only warnings<br>**'info'** or true - file location and read info<br>**'debug'** - very detailed debugging info
Expand Down
13 changes: 12 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Promise from 'bluebird';
import path from 'path';
import _ from 'lodash';
import preProcessPattern from './preProcessPattern';
import processPattern from './processPattern';
Expand Down Expand Up @@ -46,6 +47,16 @@ function CopyWebpackPlugin(patterns = [], options = {}) {
let contextDependencies;
const written = {};

let context;

if (!options.context) {
context = compiler.options.context;
} else if (!path.isAbsolute(options.context)) {
context = path.join(compiler.options.context, options.context);
} else {
context = options.context;
}

compiler.plugin('emit', (compilation, cb) => {
debug('starting emit');
const callback = () => {
Expand All @@ -64,7 +75,7 @@ function CopyWebpackPlugin(patterns = [], options = {}) {
written,
fileDependencies,
contextDependencies,
context: compiler.options.context,
context,
output: compiler.options.output.path,
ignore: options.ignore || [],
copyUnmodified: options.copyUnmodified,
Expand Down
54 changes: 54 additions & 0 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1227,5 +1227,59 @@ describe('apply function', () => {
.catch(done);
});
});

describe('context', () => {
it('overrides webpack config context with absolute path', (done) => {
runEmit({
expectedAssetKeys: [
'newdirectory/nestedfile.txt'
],
options: {
context: path.resolve(HELPER_DIR, 'directory')
},
patterns: [{
from: 'nested',
to: 'newdirectory'
}]
})
.then(done)
.catch(done);
});

it('overrides webpack config context with relative path', (done) => {
runEmit({
expectedAssetKeys: [
'newdirectory/nestedfile.txt'
],
options: {
context: 'directory'
},
patterns: [{
from: 'nested',
to: 'newdirectory'
}]
})
.then(done)
.catch(done);
});

it('is overridden by pattern context', (done) => {
runEmit({
expectedAssetKeys: [
'newdirectory/nestedfile.txt'
],
options: {
context: 'directory'
},
patterns: [{
context: 'nested',
from: '.',
to: 'newdirectory'
}]
})
.then(done)
.catch(done);
});
});
});
});

0 comments on commit 10cd1a2

Please sign in to comment.