Closed
Description
- I understand that GitHub issues are not for tech support, but for questions specific to this generator, bug reports, and feature requests.
Item | Version |
---|---|
generator-angular-fullstack | 4.0.0-beta.3 |
Node | 6.2.2 |
npm | 3.9.5 |
Operating System | Windows 10 |
Item | Answer |
---|---|
Transpiler | TypeScript |
Markup | HTML |
CSS | SCSS |
Router | ui-router |
Build Tool | Gulp |
Client Tests | Jasmine |
DB | MongoDB |
Auth | Y |
ERROR:
[21:05:29] Starting 'build'...
[21:05:29] 'build' errored after 1.34 ms
[21:05:29] Error: Task transpile:client is not configured as a task on gulp. If this is a submodule, you may need to use require('run-sequence').use(gulp).
at C:\Users\Yunfei\www\mean\node_modules\run-sequence\index.js:20:10
at Array.forEach (native)
at verifyTaskSets (C:\Users\Yunfei\www\mean\node_modules\run-sequence\index.js:13:11)
at C:\Users\Yunfei\www\mean\node_modules\run-sequence\index.js:32:4
at Array.forEach (native)
at verifyTaskSets (C:\Users\Yunfei\www\mean\node_modules\run-sequence\index.js:13:11)
at runSequence (C:\Users\Yunfei\www\mean\node_modules\run-sequence\index.js:92:2)
at Gulp.<anonymous> (C:\Users\Yunfei\www\mean\gulpfile.babel.js:432:31)
at module.exports (C:\Users\Yunfei\www\mean\node_modules\gulp\node_modules\orchestrator\lib\runTask.js:34:7)
at Gulp.Orchestrator._runTask (C:\Users\Yunfei\www\mean\node_modules\gulp\node_modules\orchestrator\index.js:273:3)
at Gulp.Orchestrator._runStep (C:\Users\Yunfei\www\mean\node_modules\gulp\node_modules\orchestrator\index.js:214:10)
at Gulp.Orchestrator.start (C:\Users\Yunfei\www\mean\node_modules\gulp\node_modules\orchestrator\index.js:134:8)
at C:\Users\Yunfei\AppData\Roaming\npm\node_modules\gulp-cli\lib\versioned\^3.7.0\index.js:46:20
at _combinedTickCallback (internal/process/next_tick.js:67:7)
at process._tickCallback (internal/process/next_tick.js:98:9)
at Module.runMain (module.js:577:11)
at run (node.js:348:7)
at startup (node.js:140:9)
at node.js:463:3
I tried to comment:
line 515 //'transpile:client'
line 520 //'generate-favicon'
because this two tasks are not exist.
Then I got the error:
Subsequent variable declarations must have the same type. Variable '$' must be of type 'cssSelectorHelper', but here has type 'JQueryStatic'.
I don't know how to fix it. I searched online, vladimir-ivanov commened on angular/angular#4725 with a solution:
declare module "jquery" {
export var $:JQueryStatic;
}
//declare var jQuery: JQueryStatic;
//declare var $: JQueryStatic;
but every time when I run gulp command, it will reset back.
Any ideas?