How to use the @nguniversal/common/schematics/add.addUniversalCommonRule function in @nguniversal/common

To help you get started, we’ve selected a few @nguniversal/common examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github angular / universal / modules / express-engine / schematics / install / index.ts View on Github external
return () => {
    return chain([
      addUniversalCommonRule(options),
      addServerFile(options),
      addDependencies(options),
    ]);
  };
}
github angular / universal / modules / hapi-engine / schematics / install / index.ts View on Github external
return () => {
    return chain([
      addUniversalCommonRule(options),
      addServerFile(options),
      addDependencies(options),
    ]);
  };
}