x
)- [x] bug report -> please search issues before submitting
- [ ] feature request
x
)- [ ] new
- [ ] build
- [ ] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [x] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
Angular CLI: 6.2.5
Node: 8.11.3
OS: win32 x64
Angular: 6.1.10
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, router
@angular-devkit/architect 0.8.5
@angular-devkit/build-angular 0.8.5
@angular-devkit/build-optimizer 0.8.5
@angular-devkit/build-webpack 0.8.5
@angular-devkit/core 0.8.5
@angular-devkit/schematics 0.8.5
@angular/cdk 6.4.7
@angular/cli 6.2.5
@angular/material 6.4.7
@angular/pwa 0.10.5
@ngtools/webpack 6.2.5
@schematics/angular 0.8.5
@schematics/update 0.8.5
rxjs 6.2.2
typescript 2.9.2
webpack 4.20.2
ng new pwademo
ng add @angular/material
ng build --prod
ng add @angular/pwa
Installing packages for tooling via npm.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modulesfsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
The command doesnt add automatically PWA features to my Angular application such as manifest file or icons in assets folder or edit my index.html file with reference to manifest, only show me the error message
Maximum call stack size exceeded
Currently you will need to execute ng add @angular/pwa@v6-lts
to ensure the version compatible with Angular 6 is used.
I'm just running the command
ng add @angular/pwa
but its take a long time to show me error message: Maximum call stack size exceeded
I'm having the same issue. I was able to get it to work by specifying the previous stable release:
ng add @angular/[email protected] --project my-project-name
Oh hell, it worked for me. But is there any clue as to why?
Thanks @jakawell.
I'm not sure. The latest version was just published recently, so I'm guessing something isn't quite right with it.
The latest version is targeted to be used with Version 7.
No issue with bellow version. Update your cli.
ng version
Angular CLI: 7.0.5
Node: 10.11.0
Angular: 7.0.3
@0.8.7
I am using nx extensions cli v7 and angular cli 7.0.5 and ran into the same issue.
@jakawell thanks for your solution , that one works (using the older version/stable version of @angular/[email protected])
Hi, the problem is no longer reproducable if you use the latest versions of the CLI and devkit packages.
"@angular-devkit/build-angular": "^0.10.5",
"@angular/cli": "^7.0.5",
@jakawell thanks so much.You rock.
it should be fixed by updating your global angular cli to the last stable version
"@angular-devkit/build-angular": "^0.10.5",
"@angular/cli": "^7.0.5",
This worked for me also (in project package.json)
The root cause here is that the @angular/pwa doesn't declare any peerDependency in the package.json config, so the npm client installs the latest one which doesn't seem to be compatible. To fix this we need to define a peerDep on the right version.
To fix this for v6 developers, we might need to cut a version that is compatible with v6 and declares a peerDep on v6.
peerDependency
on what? Angular or cli/devkit?
on the cli because it's the cli that provides schematics and other stuff needed by @angular/pwa
Makes sense.
I just want to point out that some parts (such as the ngsw-config.json
) must be compatible with the @angular/service-worker
version used. Maybe we should move them to @angular/service-worker
and have cli somehow get them from there.
since cli and the framework are aligned on major versions, it should be
fine to pin pwa to just cli. no?
On Wed, Nov 28, 2018 at 11:48 PM George Kalpakas notifications@github.com
wrote:
Makes sense.
I just want to point out that some parts (such as the ngsw-config.json)
must be compatible with the @angular/service-worker version used. Maybe
we should move them to @angular/service-worker and have cli somehow get
them from there.—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
https://github.com/angular/angular-cli/issues/12914#issuecomment-442737821,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AANM6EB0KHPxEyQZ9wauacG9722gYHE9ks5uz5FVgaJpZM4YXdGF
.
If we only change things related to the ngsw-config
in major versions, yes.
If you delete the node_modules folder it works fine.
For my case I updated my angular CLI and then 'ng add @angular/pwa' is working fine.
To update Angular CLI in your project use:
npm uninstall --save-dev angular-cli
npm install --save-dev @angular/cli@latest
@alan-agius4 It's not fixed, can you please reopen the issue ?
Just updated to @angular/cli:7.2.3
and the error is still here.
I've also deleted the node_modules directory and it still fails the same way.
Nevermind, I updated my global cli but didn't noticed the project was using an older one installed locally. Bumped both it's working fine now. Sorry for the trouble.
I'm having the same issue. I was able to get it to work by specifying the previous stable release:
ng add @angular/[email protected] --project my-project-name
it seems to work, thnk u
@jakawell muchas gracias. Me funciono (y)
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
Currently you will need to execute
ng add @angular/pwa@v6-lts
to ensure the version compatible with Angular 6 is used.