Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't import ionic-cache in Ionic 5 / Angular 11 project due to change in @ionic/storage lib. #126

Closed
ghost opened this issue Apr 1, 2021 · 5 comments

Comments

@ghost
Copy link

ghost commented Apr 1, 2021

Can't import ionic-cache in Ionic 5 / Angular 11 project due to change in @ionic/storage lib.

It seems that IonicStorageModule is no more a member of @ionic/storage in angular but need to come from @ionic/storage-angular

I had to change it manually in the node-modules.

[ng] Compiling ionic-cache : module as esm5 [ng] Error: Failed to compile entry-point ionic-cache (module as esm5) due to compilation errors: [ng] node_modules/ionic-cache/dist/cache.module.js:31:30 - error NG1010: Value at position 0 in the NgModule.imports of CacheModule is not a reference [ng] Value could not be determined statically. [ng] 31 imports: [ [ng] ~ [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] ... [ng] 35 }) [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] 36 ] [ng] ~~~~~~~~~~~~~~~~~~~~~ [ng] node_modules/ionic-cache/dist/cache.module.js:32:25 [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] Unable to evaluate this expression statically. [ng] node_modules/ionic-cache/dist/cache.module.js:32:25 [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~ [ng] Unknown reference. [ng] Compiling ionic-cache : module as esm5 [ng] An unhandled exception occurred: Failed to compile entry-point ionic-cache (moduleas esm5) due to compilation errors: [ng] node_modules/ionic-cache/dist/cache.module.js:31:30 - error NG1010: Value at position 0 in the NgModule.imports of CacheModule is not a reference [ng] Value could not be determined statically. [ng] 31 imports: [ [ng] ~ [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] ... [ng] 35 }) [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] 36 ] [ng] ~~~~~~~~~~~~~~~~~~~~~ [ng] node_modules/ionic-cache/dist/cache.module.js:32:25 [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~~~~~~~~~ [ng] Unable to evaluate this expression statically. [ng] node_modules/ionic-cache/dist/cache.module.js:32:25 [ng] 32 IonicStorageModule.forRoot({ [ng] ~~~~~~~~~~~~~~~~~~ [ng] Unknown reference.

@dchedufa
Copy link

I got the same issue, any fix?

@lincolnthree
Copy link

@dchedufa I copied this project into our sources directly and updated the references. Small lib, sucks to do it, probably should send a PR but so busy...

@ghost
Copy link
Author

ghost commented May 26, 2021

I used https://www.npmjs.com/package/patch-package to directly patch the lib at npm install.
and add this in my package.json :

"scripts": {
"ng": "ng",
"postinstall": "npx patch-package && ngcc",
"start": "ng serve",
"build": "ng build",

@WillPoulson
Copy link
Collaborator

If the maintainer of this package is open to PRs then my #130 would resolve this issue along with upgrading from angular 6 to 11.

@Nodonisko
Copy link
Owner

Solved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants