Giter VIP home page Giter VIP logo

Comments (6)

catamphetamine avatar catamphetamine commented on May 27, 2024

Be more specific

from webpack-isomorphic-tools.

RaulTsc avatar RaulTsc commented on May 27, 2024

I am currently able to disable debugging with debug: false (which defaults to false).

But I also want to disable warning/error logging. For example when running a node app like

const WebpackIsomorphicTools = require('webpack-isomorphic-tools');
new WebpackIsomorphicTools(require('./src/webpack-isomorphic-tools'))
  .server(rootDir, () => { require('./src/server'); });

I will see a lot of error: asset not found (because it cannot find the key in webassets.json). But I don't have webpack as a dependency and webassets.json is just there so that the server starts (If not it will be stuck saying Waiting for first webpack build.

My specific use case is this:

I have a common-react-components library that I use for the web app but I also want to use components from there in my pdf generation service. In order to do that, I import the components there, and do React.renderToString() to get the html that I pass to wkhtmltopdf to get the pdf.

So in order to not see the errors I need to do this

"{PATH}/Grid/GridList/GridList.scss": {},
    "{PATH}/Grid/GridItem/GridItem.scss": {},
    "{PATH}/Separator/Separator.scss": {},
    "{PATH}/ResponsiveImage/ResponsiveImage.scss": {},
    "{PATH}/Links/Links.scss": {}

Does that make sense?

Thanks!

from webpack-isomorphic-tools.

RaulTsc avatar RaulTsc commented on May 27, 2024

The entire webpack-assets.json that I use so that I don't have an extra compile step with webpack which I don't need.

{
  "javascript": {
    "main": ""
  },
  "styles": {},
  "assets": {
    "{PATH}/Grid/GridList/GridList.scss": {},
    "{PATH}/Grid/GridItem/GridItem.scss": {},
    "{PATH}/Separator/Separator.scss": {},
    "{PATH}/ResponsiveImage/ResponsiveImage.scss": {},
    "{PATH}/Links/Links.scss": {}
  },
  "webpack": {
    "version": "3.7.1"
  }
}

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 27, 2024

If it outputs errors then it means that these styles are required somewhere in your components.
You're saying that you don't need styles to generate the PDF.
Why are you using webpack-isomorphic-tools then.

from webpack-isomorphic-tools.

RaulTsc avatar RaulTsc commented on May 27, 2024

I cannot require the needed components (which don't use scss) because it throws an error that it can't parse scss. Even though I use the full part for the import, I don't import for a common index.ts for example.

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 27, 2024

In that case you should play with the CSS file type settings:
https://github.com/catamphetamine/webpack-isomorphic-tools#configuration
E.g. set path to return /empty and add /empty to your webpack-assets.json.

from webpack-isomorphic-tools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.