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

fix(platform): update versions for Nx generators #339

Merged
merged 2 commits into from
Apr 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions packages/nx-plugin/src/generators/app/files/versions.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// V16
// dependencies
export const V16_ANALOG_JS_CONTENT = 'latest';
export const V16_ANALOG_JS_ROUTER = 'latest';
export const V16_ANGULAR_PLATFORM_SERVER = '^16.0.0-next.0';
export const V16_ANALOG_JS_CONTENT = '^0.2.0-beta.0';
export const V16_ANALOG_JS_ROUTER = '^0.2.0-beta.0';
export const V16_ANGULAR_PLATFORM_SERVER = '^16.0.0-rc.0';
export const V16_FRONT_MATTER = '^4.0.2';
export const V16_MARKED = '^4.2.12';
export const V16_PRISMJS = '^1.29.0';

// devDependencies
export const V16_ANALOG_JS_PLATFORM = 'latest';
export const V16_ANALOG_JS_PLATFORM = '^0.2.0-beta.0';
export const V16_NRWL_VITE = '^15.7.0';
export const V16_JSDOM = '^20.0.0';
export const V16_TYPESCRIPT = '~5.0.2';
Expand All @@ -18,15 +18,15 @@ export const V16_VITEST = '^0.25.8';

// V15
// dependencies
export const V15_ANALOG_JS_CONTENT = 'latest';
export const V15_ANALOG_JS_ROUTER = 'latest';
export const V15_ANALOG_JS_CONTENT = '0.1.9';
export const V15_ANALOG_JS_ROUTER = '0.1.0-alpha.10';
export const V15_ANGULAR_PLATFORM_SERVER = '^15.0.0';
export const V15_FRONT_MATTER = '^4.0.2';
export const V15_MARKED = '^4.2.12';
export const V15_PRISMJS = '^1.29.0';

// devDependencies
export const V15_ANALOG_JS_PLATFORM = 'latest';
export const V15_ANALOG_JS_PLATFORM = '0.1.0-beta.22';
export const V15_NRWL_VITE = '^15.7.0';
export const V15_JSDOM = '^20.0.0';
export const V15_TYPESCRIPT = '~4.8.4';
Expand Down