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.1.0 |
Node | 6.9.1 |
npm | 4.0.3 |
Operating System | OS X 10.12.1 |
Item | Answer |
---|---|
Transpiler | Babel |
Markup | Pug |
CSS | SCSS |
Router | ui-router |
Client Tests | Mocha |
DB | None |
Auth | N |
Generated a generic test project (no Auth or DB - and unedited) using yo angular-fullstack then ran npm test. Got some permission errors just after Starting 'test:client' that are odd...
[00:20:55] Starting 'test:client'...
{ Error: EACCES: permission denied, mkdir '/client'
at Error (native)
cause:
{ Error: EACCES: permission denied, mkdir '/client'
at Error (native)
errno: -13, code: 'EACCES', syscall: 'mkdir', path: '/client' },
isOperational: true,
errno: -13,
code: 'EACCES',
syscall: 'mkdir',
path: '/client' }
This is happening just before Karma starts so I think the generated webpack.make.js is trying to create /client (off of root) instead of using the base directory where the project is.
Is this happening for anyone else?