我有angular2
支持的java webapp。
java和.ts文件的打包和编译是通过maven完成的,然后我们使用spring-boot运行.war,spring-boot提供代码的热部署。
我想使用angular-cli
只在同意,为生成组件,服务等。我还没有计划添加jasmine测试,所以我不担心测试,服务器配置等。我不想webpacking和额外的angular-cli
垃圾文件也。只有什么是已经定义在package.json
是有一种方法我可以使用Angular -是否仅在现有项目上使用cli来生成文件结构?
以下是项目和文件结构。
src/main/webapp
src/main/webapp/package.json
src/main/webapp/systemjs.config.js
src/main/webapp/app
src/main/webapp/main.ts
src/main/webapp/module.ts
src/main/webapp/component.ts
src/main/webapp/landing.html
src/main/webapp/node_modules
以下是我的package.json
{
"name": "angular-simple-start",
"version": "1.0.0",
"description": "Simple app",
"scripts": {
},
"dependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/router": "~3.4.0",
"angular-in-memory-web-api": "~0.2.4",
"systemjs": "0.19.40",
"core-js": "^2.4.1",
"rxjs": "5.0.1",
"zone.js": "^0.7.4"
},
"devDependencies": {
"concurrently": "^3.2.0",
"typescript": "~2.0.10",
"@types/node": "^6.0.46",
},
}
2条答案
按热度按时间bzzcjhmw1#
我不知道这是否回答了你的问题,但你可以使用这个命令行来创建最小的应用程序,没有任何测试:
mefy6pfw2#
您还可以使用别名
st
(跳过测试)和ng new <project_name> --st
,这做同样的事情