From 97fa63d7ee76fd269f65383441070d9d3565c824 Mon Sep 17 00:00:00 2001 From: Maxime GRIS Date: Fri, 14 Apr 2017 19:06:14 +0200 Subject: [PATCH] update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e577a9765..708a20553 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ Your built files are in the /dist folder. ## Use NodeJS Native libraries -Actually Angular-Cli doesn't seem to be able to import nodeJS native libs or electron libs at compilation time (Webpack error). -If you need to use NodeJS some native libraries like 'fs' or 'os', you **MUST** add it manually in the file `webpack.config.js` in root folder : +Actually Angular-Cli doesn't seem to be able to import nodeJS native libs or electron libs at compile time (Webpack error). +If you need to use NodeJS native libraries like 'fs' or 'os', you **MUST** add it manually in the file `webpack.config.js` in root folder : ```javascript "externals": { @@ -78,4 +78,4 @@ If you need to use NodeJS some native libraries like 'fs' or 'os', you **MUST** "electron": 'require(\'electron\')', "fs": 'require(\'fs\')' }, -``` \ No newline at end of file +```