You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
everything worked fine up until upgrading to marko 4.4.0, when building with webpack, this error cropped up var markoCompiler = !(function webpackMissingModule() { var e = new Error("Cannot find module \".\""); e.code = 'MODULE_NOT_FOUND'; throw e; }());
Downgrading to marko 4.3.1 could fix the problem.
What's wrong? please!
The text was updated successfully, but these errors were encountered:
arthurchenn
changed the title
marko 4.4 Error: Cannot find module "."
marko 4.4 webpack Error: Cannot find module "."
May 26, 2017
i was able to reproduce the error and i think i found the reason: Its because of webpack has changed the name of their context-object (https://webpack.js.org/api/loaders/#this-options) from 'this.options' to 'this.rootContext' with the release of webpack 4.
everything worked fine up until upgrading to marko 4.4.0, when building with webpack, this error cropped up
var markoCompiler = !(function webpackMissingModule() { var e = new Error("Cannot find module \".\""); e.code = 'MODULE_NOT_FOUND'; throw e; }());
Downgrading to marko 4.3.1 could fix the problem.
What's wrong? please!
The text was updated successfully, but these errors were encountered: