-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lib): updated the package.json file
- Loading branch information
1 parent
57f89d7
commit 1f04d8e
Showing
4 changed files
with
118 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
projects/angular-material-extensions/select-country/tsconfig.lib.prod.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "./tsconfig.lib.json", | ||
"angularCompilerOptions": { | ||
"enableIvy": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/** | ||
* *** NOTE ON IMPORTING FROM ANGULAR AND NGUNIVERSAL IN THIS FILE *** | ||
* | ||
* If your application uses third-party dependencies, you'll need to | ||
* either use Webpack or the Angular CLI's `bundleDependencies` feature | ||
* in order to adequately package them for use on the server without a | ||
* node_modules directory. | ||
* | ||
* However, due to the nature of the CLI's `bundleDependencies`, importing | ||
* Angular in this file will create a different instance of Angular than | ||
* the version in the compiled application code. This leads to unavoidable | ||
* conflicts. Therefore, please do not explicitly import from @angular or | ||
* @nguniversal in this file. You can export any needed resources | ||
* from your application's main.server.ts file, as seen below with the | ||
* import for `ngExpressEngine`. | ||
*/ | ||
|
||
import 'zone.js/dist/zone-node'; | ||
|
||
import * as express from 'express'; | ||
import {join} from 'path'; | ||
|
||
// Express server | ||
const app = express(); | ||
|
||
const PORT = process.env.PORT || 4000; | ||
const DIST_FOLDER = join(process.cwd(), 'dist/browser'); | ||
|
||
// * NOTE :: leave this as require() since this file is built Dynamically from webpack | ||
const {AppServerModuleNgFactory, LAZY_MODULE_MAP, ngExpressEngine, provideModuleMap} = require('./dist/server/main'); | ||
|
||
// Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine) | ||
app.engine('html', ngExpressEngine({ | ||
bootstrap: AppServerModuleNgFactory, | ||
providers: [ | ||
provideModuleMap(LAZY_MODULE_MAP) | ||
] | ||
})); | ||
|
||
app.set('view engine', 'html'); | ||
app.set('views', DIST_FOLDER); | ||
|
||
// Example Express Rest API endpoints | ||
// app.get('/api/**', (req, res) => { }); | ||
// Serve static files from /browser | ||
app.get('*.*', express.static(DIST_FOLDER, { | ||
maxAge: '1y' | ||
})); | ||
|
||
// All regular routes use the Universal engine | ||
app.get('*', (req, res) => { | ||
res.render('index', { req }); | ||
}); | ||
|
||
// Start up the Node server | ||
app.listen(PORT, () => { | ||
console.log(`Node Express server listening on http://localhost:${PORT}`); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Work around for https://github.com/angular/angular-cli/issues/7200 | ||
|
||
const path = require('path'); | ||
const webpack = require('webpack'); | ||
|
||
module.exports = { | ||
mode: 'none', | ||
entry: { | ||
// This is our Express server for Dynamic universal | ||
server: './server.ts', | ||
// This is an example of Static prerendering (generative) | ||
prerender: './prerender.ts' | ||
}, | ||
externals: { | ||
'./dist/server/main': 'require("./server/main")' | ||
}, | ||
target: 'node', | ||
resolve: { extensions: ['.ts', '.js'] }, | ||
optimization: { | ||
minimize: false | ||
}, | ||
output: { | ||
// Puts the output at the root of the dist folder | ||
path: path.join(__dirname, 'dist'), | ||
filename: '[name].js' | ||
}, | ||
module: { | ||
noParse: /polyfills-.*\.js/, | ||
rules: [ | ||
{ test: /\.ts$/, loader: 'ts-loader' }, | ||
{ | ||
// Mark files inside `@angular/core` as using SystemJS style dynamic imports. | ||
// Removing this will cause deprecation warnings to appear. | ||
test: /(\\|\/)@angular(\\|\/)core(\\|\/).+\.js$/, | ||
parser: { system: true }, | ||
}, | ||
] | ||
}, | ||
plugins: [ | ||
new webpack.ContextReplacementPlugin( | ||
// fixes WARNING Critical dependency: the request of a dependency is an expression | ||
/(.+)?angular(\\|\/)core(.+)?/, | ||
path.join(__dirname, 'src'), // location of your src | ||
{} // a map of your routes | ||
), | ||
new webpack.ContextReplacementPlugin( | ||
// fixes WARNING Critical dependency: the request of a dependency is an expression | ||
/(.+)?express(\\|\/)(.+)?/, | ||
path.join(__dirname, 'src'), | ||
{} | ||
) | ||
] | ||
}; |