This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
Update nx-extensions-ionic for the current NX version? #25
Open
Description
I created a new project with:
npx create-nx-workspace@latest
npm install -D @nx/angular --legacy-peer-deps
npm install --save-dev -D --exact @nxext/ionic-angular --legacy-peer-deps
npm install --save-dev -D --exact @nxext/capacitor --legacy-peer-deps
This resulted in the following package.json:
{
"name": "@anime-sector/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {},
"private": true,
"devDependencies": {
"@nx/angular": "^18.0.2",
"@nx/js": "18.0.2",
"@nx/workspace": "18.0.2",
"@nxext/capacitor": "^17.0.1",
"@nxext/ionic-angular": "^17.0.1",
"nx": "18.0.2"
}
}
After I realized that creating a new Ionic app is simply not possible, I took a closer look at the package.json and noticed that the following packages do not match the NX version numbers:
"@nxext/capacitor": "^17.0.1",
"@nxext/ionic-angular": "^17.0.1",
Could it be that nothing is working because the nxext packages have not yet been updated?
Is an update planned?