Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nosaku committed May 28, 2016
1 parent 7894fb2 commit 63c7a31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ A project to create Angular 2 bundle JS for testing applications created in the

npm install -g http-server
npm install
npm run bundle
After the npm install, you will see the Angular 2 bundle and other required JS files in dist directory. Use the bundled index.html for testing directly in the browser. For doing this use:

cd examples
cd example
http-server -c-1

Then open a browser at the following url:
Expand Down
7 changes: 3 additions & 4 deletions copyfiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ copy(
'./node_modules/zone.js/dist/zone.min.js',
], 'dist', {flatten: true}, function(err, file) {
console.log('done copying required JS files');
});

copy('dist/*', 'example/dist', {flatten: true}, function(err, file) {
console.log('done copying dist to example');
copy('dist/*', 'example/dist', {flatten: true}, function(err, file) {
console.log('done copying dist to example');
});
});

0 comments on commit 63c7a31

Please sign in to comment.