Giter Club home page Giter Club logo

Comments (12)

catamphetamine avatar catamphetamine commented on May 18, 2024

give me the full log, maybe I can get an idea

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

ok

[webpack-isomorphic-tools] [debug] instantiated webpack-isomorphic-tools with options {
  "debug": true,
  "webpack_assets_file_path": "../dist/webpack-main-stats.json",
  "assets": {
    "images": {
      "extensions": [
        "jpeg",
        "jpg",
        "png",
        "gif",
        "svg"
      ]
    },
    "styles": {
      "extensions": [
        "css",
        "scss"
      ]
    }
  },
  "webpack_stats_file_path": "webpack-stats.json"
}
[webpack-isomorphic-tools] [debug] entering development mode

DEBUG:   hfa_bdu Running Isomporphic Tools +238ms
[webpack-isomorphic-tools] [debug] registering require() hooks for assets
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.jpeg
[require-hook] [debug] Hooking into *.jpeg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.jpg
[require-hook] [debug] Hooking into *.jpg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.png
[require-hook] [debug] Hooking into *.png files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.gif
[require-hook] [debug] Hooking into *.gif files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.svg
[require-hook] [debug] Hooking into *.svg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.css
[require-hook] [debug] Hooking into *.css files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.scss
[require-hook] [debug] Hooking into *.scss files loading

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 18, 2024

so, no error so far

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

sorry messed that up

options {
  "debug": true,
  "webpack_assets_file_path": "../dist/webpack-main-stats.json",
  "assets": {
    "images": {
      "extensions": [
        "jpeg",
        "jpg",
        "png",
        "gif",
        "svg"
      ]
    },
    "styles": {
      "extensions": [
        "css",
        "scss"
      ]
    }
  },
  "webpack_stats_file_path": "webpack-stats.json"
}
[webpack-isomorphic-tools] [debug] entering development mode
webpack_isomorphic_tools {
  hooks: [],
  cached_assets: [],
  options:
   { debug: true,
     webpack_assets_file_path: '../dist/webpack-main-stats.json',
     assets: { images: [Object], styles: [Object] },
     webpack_stats_file_path: 'webpack-stats.json',
     development: true },
  log:
   Log {
     options: { debug: true },
     preamble: '[webpack-isomorphic-tools]' } }
[webpack-isomorphic-tools] [debug] registering require() hooks for assets
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.jpeg
[require-hook] [debug] Hooking into *.jpeg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.jpg
[require-hook] [debug] Hooking into *.jpg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.png
[require-hook] [debug] Hooking into *.png files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.gif
[require-hook] [debug] Hooking into *.gif files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.svg
[require-hook] [debug] Hooking into *.svg files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.css
[require-hook] [debug] Hooking into *.css files loading
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.scss
[require-hook] [debug] Hooking into *.scss files loading
****BEFORE****

DEBUG:   hfa_bdu Running Isomporphic Tools +242ms
[webpack-isomorphic-tools] [debug] registering require() hooks for assets
[webpack-isomorphic-tools] [debug]  registering a require() hook for *.jpeg
[require-hook] [debug] Hooking into *.jpeg files loading
[runner]: Dev Error [Error: File extension "jpeg" is already occupied by require-hacker]

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 18, 2024

so, you are running webpack-isomorphic-tools twice.
that's the cause fo the error.

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

hmmm...I'm doing this

const tools = new WebpackIsomorphicTools(toolsConfig).development(isDev);
tools.server(statsDir).then

is that a problem?

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 18, 2024

That shouldn't be a problem.
Try to search for new WebpackIsomorphicTools in your project, maybe you are calling it in more than one place.

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

ok weird, this just started happening so I'm not sure what is going on?

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 18, 2024

what has changed?

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

not sure, I'll let you know if I figure it out. Just rebased off another persons branch so maybe something crazy happened

from webpack-isomorphic-tools.

dtothefp avatar dtothefp commented on May 18, 2024

haaa...well just in case you ever wondered don't do this. I must have been clobbering something on global that was messing with ismorphic tools...

var jsdom = require('jsdom');

var doc = jsdom.jsdom('<!doctype html><html><body></body></html>');
var win = doc.parentWindow;

global.document = doc;
global.window = win;
Object.assign(global, win);

instead do this

global.document = doc;
global.window = win;
global.navigator = win.navigator;

from webpack-isomorphic-tools.

catamphetamine avatar catamphetamine commented on May 18, 2024

FYI
I'm posting this in every issue and PR to notify whoever may be interested:
today I've released an alternative helper library called universal-webpack.
It takes a different approach than webpack-ismorphic-tools and instead of hacking Node.js require() calls it just compiles all code with target: 'node' webpack configuration option.
As a result, all Webpack plugins and features are supported.
If you think you might need that here's an example project:
https://github.com/halt-hammerzeit/webpack-react-redux-isomorphic-render-example

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.