使用TypeScript的Aurelias Bundling Process

时间:2016-05-25 22:14:13

标签: bundle aurelia

我正在使用asp.net 5打字稿骨架。当我捆绑应用程序时,在" dist"文件夹,我看到了一堆html和js文件。根据bundles.js文件,如:

"bundles": {
"dist/app-build": {
  "includes": [
    "[**/*.js]",
    "**/*.html!text",
    "**/*.css!text"
  ],

如果我正确思考,我应该使用app-build.html和app-build.js捆绑这些文件的版本,是的。相反,我看到所有文件基本上都在" src"文件夹中。

正常工作的是aurelia.js文件是从以下方面正确生成的:

 "dist/aurelia": {
  "includes": [
    "aurelia-framework",
    "aurelia-materialize-bridge",
    "aurelia-bootstrapper",
    "aurelia-fetch-client",
    more stuff here...

我根本没有改变骨架。只是想让事情发挥作用。

可能会发生什么想法?

非常感谢

1 个答案:

答案 0 :(得分:0)

我不确定我完全理解你的问题,而且我没有使用asp.net版本的骨架,但我的Aurelia Typescript应用程序有以下捆绑配置:

~node()

在我的案例中,index.html,app.ts(查看root)和main.ts(aurelia config)位于' root'文件夹 src 。我的其余代码位于子目录中。