You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
I am using a completely fresh install (as of today of node, yeoman and this generator).
I generated my project using the following options:
? Which JavaScript framework do you want? Angular 1
? Which module management do you want? Webpack with NPM
? Which JS preprocessor do you want? TypeScript
? Which CSS preprocessor do you want? Less
? Which Continuous Integration platform do you want?
? Do you want a sample app? TodoMVC
? Would you like a router? None
When I run gulp build no sourcemap files are generated. When I run gulp serve:dist, the browser (Chrome) does not show Typescript files, just the compressed Javascript files.
Config
Copy the content from .yo-rc.json:
{
"generator-fountain-angular1": {
"version": "1.0.0",
"props": {
"framework": "angular1",
"modules": "webpack",
"js": "typescript",
"ci": "",
"css": "less",
"resolved": "/usr/local/lib/node_modules/generator-fountain-webapp/node_modules/generator-fountain-angular1/generators/app/index.js",
"namespace": "fountain-angular1:app",
"_": [],
"sample": "todoMVC",
"router": "none"
}
}
}```## Relevant Links- If your project is public, link to the repo so we can investigate directly.- **BONUS POINTS:** Create a [minimal reproduction](http://stackoverflow.com/help/mcve) and upload it to GitHub. This will get you the fastest support.## Environment
Node: v6.10.3, darwin 15.6.0
yeoman: 2.0.0
npm: 5.6.0
The text was updated successfully, but these errors were encountered:
This seems to fix it. I added sourcemap to new webpack.optimize.UglifyJsPlugin(..., and ** devtool: 'source-map',** towebpack-dist.conf.js. Additions in bold:
Description
I am using a completely fresh install (as of today of node, yeoman and this generator).
I generated my project using the following options:
? Which JavaScript framework do you want? Angular 1
? Which module management do you want? Webpack with NPM
? Which JS preprocessor do you want? TypeScript
? Which CSS preprocessor do you want? Less
? Which Continuous Integration platform do you want?
? Do you want a sample app? TodoMVC
? Would you like a router? None
When I run gulp build no sourcemap files are generated. When I run gulp serve:dist, the browser (Chrome) does not show Typescript files, just the compressed Javascript files.
Config
Copy the content from
.yo-rc.json
:Node: v6.10.3, darwin 15.6.0
yeoman: 2.0.0
npm: 5.6.0
The text was updated successfully, but these errors were encountered: