errorify icon indicating copy to clipboard operation
errorify copied to clipboard

incompatible with [email protected]+

Open m59peacemaker opened this issue 9 years ago • 5 comments

errorify works with [email protected]. Using watchify 3.5-3.7, when there is an error, nothing happens at all. No bundle file is created, or if the file already exists, nothing is written to it.

m59peacemaker avatar Mar 08 '16 23:03 m59peacemaker

It seems like watchify introduced a breaking change. I'm not sure what to look for, though. https://github.com/substack/watchify/commits/v3.5.0

m59peacemaker avatar Mar 08 '16 23:03 m59peacemaker

I actively use [email protected] with errorify and it works fine. Is this still an issue?

zertosh avatar Apr 04 '16 05:04 zertosh

Same problem here.

watchify v3.7.0 browserify v13.1.0

Thanks

imcodetolive avatar Aug 30 '16 18:08 imcodetolive

I have the same problem watchify v3.9.0 browserify v13.3.0

instead the terminal logs:

errorify: SyntaxError: /home/me/workspace/example/src/app.js: Unexpected token, expected ; (3:3) while parsing file: /home/me/workspace/example/src/app.js

My package.json script is

watchify src/index.js -vd -o build/app.bundle.js

and I have some transforms being applied

  "browserify": {
    "transform": [
      ["babelify", {
        "sourceMapsAbsolute": false,
        "sourceMaps": true,
        "plugins": [
          ["yo-yoify"],
          ["fast-async", {
            "runtimePatten": null,
            "compiler": {
              "promises": true,
              "es7": true,
              "noRuntime": true,
              "wrapAwait": true
            }
          }]
        ],
        "presets": ["es2015"]
      }]
    ]
  }

serapath avatar Mar 28 '17 15:03 serapath

this problem still!

zodman avatar May 17 '17 06:05 zodman