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

Import context #19

Closed
ionutt opened this issue Apr 20, 2021 · 1 comment
Closed

Import context #19

ionutt opened this issue Apr 20, 2021 · 1 comment

Comments

@ionutt
Copy link

ionutt commented Apr 20, 2021

Is there a way to know the context of the import to know if I need to replace or not the file.

My project is an multitenant and I want to be able to replace file from core with files for a particular tenant ( that I can achive ). Because we are using Vue we can also use "extend" and I want the tenant file to extent core file. And that is something that I cannot achive because I don't know the context.

Or maybe you know another webpack feature that can achive this.

@vyushin vyushin mentioned this issue Apr 22, 2021
@vyushin
Copy link
Owner

vyushin commented Apr 22, 2021

Hi, @ionutt !
I published a new release that including new replacement function API.
Please, update file-replace-loader and check it out!

Example:

const { resolve } = require('path');

module.exports = {
  //...
  module: {
    rules: [{
      test: /\.js$/,
      loader: 'file-replace-loader',
      options: {
        condition: 'always',
        replacement(resourcePath, options) {
          const context = options.context; // <-- The context is available since 1.4.0
        },
        async: true,
      }
    }]
  }
}

@vyushin vyushin closed this as completed Apr 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants