cio*_*as2 5 node.js typescript webpack angular
由于最新的 Angular 已弃用 'ng eject' 命令,我已经开始我的项目,添加名为 webpack.config 的自定义文件:
额外的webpack.config.js
我遵循了本教程:https : //codeburst.io/customizing-angular-cli-6-build-an-alternative-to-ng-eject-a48304cd3b21
我已经配置了一切,它似乎工作正常。我的问题是,我想设置我的新文件
额外的webpack.config.js
仅在我启动命令时工作
“npm 运行开始:dev”
,一开始就不想用
“npm 运行开始:prod”
我试图做一个 if 语句,以检查环境是否未在 module.exports 上设置为生产,但我无法从 environment.ts 文件中收集环境。我试过: import {environment} from './src/environments/environment';
任何人都可以帮助我进行正确的配置吗?非常感谢
这是我的 extra-webpack.config.js 文件:
'use strict';
const path = require('path'); const ForkTsCheckerWebpackPlugin =
require('fork-ts-checker-webpack-plugin');
module.exports = {
optimization: {
splitChunks: {
chunks: 'async',
minSize: 30000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 3,
automaticNameDelimiter: '~',
name: true,
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true
}
}
}
},
context: __dirname,
output: {
pathinfo: false
},
mode: 'development',
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false
},
module: {
rules: [
{
test: /\.ts?$/,
include: path.resolve(__dirname, 'src'),
use: [{
loader: 'ts-loader',
options: {
transpileOnly: true,
experimentalWatchApi: true,
},
}]
}
]
},
resolve: {
extensions: [ '.ts', '.js' ]
},
plugins: [
new ForkTsCheckerWebpackPlugin({
tslint: true
})
]
};
Run Code Online (Sandbox Code Playgroud)
这是我的 angular.json 文件:
{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "projects", "projects": {
"my-portal": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {
"@schematics/angular:component": {
"styleext": "scss"
}
},
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
"outputPath": "dist/my-portal",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/app/styles/style.scss"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}
},
"serve": {
"builder": "@angular-builders/dev-server:generic",
"options": {
"browserTarget": "my-portal:build"
},
"configurations": {
"production": {
"browserTarget": "my-portal:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "my-portal:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.scss"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"my-portal-e2e": {
"root": "e2e/",
"projectType": "application",
"prefix": "",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "my-portal:serve"
},
"configurations": {
"production": {
"devServerTarget": "my-portal:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
}
}
}
} }, "defaultProject": "my-portal" }
Run Code Online (Sandbox Code Playgroud)
我也注意到,如果我删除:
plugins: [
new ForkTsCheckerWebpackPlugin({
tslint: true
})
]
Run Code Online (Sandbox Code Playgroud)
从 webpack 配置,我可以运行它
npm run start:prod
你只需要移动配置
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
Run Code Online (Sandbox Code Playgroud)
以configurations:production使其针对该production配置进行自定义
"configurations": {
"production": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
"fileReplacements": [],
...
Run Code Online (Sandbox Code Playgroud)
更多详情:https : //github.com/meltedspark/angular-builders/issues/248#issuecomment-466650709
| 归档时间: |
|
| 查看次数: |
10272 次 |
| 最近记录: |