Skip to content

Commit e56597a

Browse files
committed
Folder structure changed
1 parent 53df0c5 commit e56597a

File tree

10 files changed

+14
-11
lines changed

10 files changed

+14
-11
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,13 @@ npm install
3737
## Run
3838

3939
```sh
40-
gulp
40+
npm start
4141
```
4242

4343
## Release History
4444

45+
* 0.1.1
46+
* Folder structure changed
4547
* 0.1.0
4648
* Work in progress
4749

app/app.component.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

app/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
var gulp = require('gulp');
22

3+
var appDev = 'src/';
34
var assetsDev = 'assets/';
4-
var assetsProd = 'src/';
55

6-
var appDev = 'dev/';
76
var appProd = 'app/';
7+
var assetsProd = 'app/assets/';
88

99
/* Mixed */
1010
var ext_replace = require('gulp-ext-replace');
@@ -62,4 +62,4 @@ gulp.task('watch', function () {
6262
gulp.watch(assetsDev + 'img/*', ['build-img']);
6363
});
6464

65-
gulp.task('default', ['watch', 'build-ts', 'build-css']);
65+
gulp.task('default', ['watch', 'build-ts', 'build-css']);

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="node_modules/angular2/bundles/router.dev.js"></script>
1717
<script src="node_modules/angular2/bundles/http.js"></script>
1818

19-
<link rel="stylesheet" href="src/css/app.css">
19+
<link rel="stylesheet" href="app/assets/css/app.css">
2020
</head>
2121
<body>
2222
<my-app>Loading...</my-app>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular2-gulp-browserify-boilerplate",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Angular 2, Express, Gulp, Browserify and SASS/Stylus boilerplate",
55
"scripts": {
66
"lite": "lite-server",
File renamed without changes.

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"outDir": "./app"
1212
},
1313
"filesGlob": [
14-
"./dev/**/*.ts",
14+
"./src/**/*.ts",
1515
"!./node_modules/**/*.ts"
1616
],
1717
"exclude": [
@@ -23,7 +23,7 @@
2323
"rewriteTsconfig": true
2424
},
2525
"files": [
26-
"./dev/app.component.ts",
27-
"./dev/main.ts"
26+
"./src/app.component.ts",
27+
"./src/main.ts"
2828
]
2929
}

0 commit comments

Comments
 (0)