create-nx-workspace 21.1.1 → 21.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <p style="text-align: center;">
2
2
  <picture>
3
3
  <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-dark.svg">
4
- <img alt="Nx - Smart Monorepos · Fast CI" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
4
+ <img alt="Nx - Smart Repos · Fast Builds" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
5
5
  </picture>
6
6
  </p>
7
7
 
@@ -66,5 +66,5 @@ npx nx@latest init
66
66
  - [Blog Posts About Nx](https://nx.dev/blog)
67
67
 
68
68
  <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
69
- width="100%" alt="Nx - Smart Monorepos · Fast CI"></a></p>
69
+ width="100%" alt="Nx - Smart Repos · Fast Builds"></a></p>
70
70
 
@@ -39,7 +39,6 @@ interface AngularArguments extends BaseArguments {
39
39
  e2eTestRunner: 'none' | 'cypress' | 'playwright';
40
40
  bundler: 'webpack' | 'rspack' | 'esbuild';
41
41
  ssr: boolean;
42
- serverRouting: boolean;
43
42
  prefix: string;
44
43
  }
45
44
  interface VueArguments extends BaseArguments {
@@ -696,7 +696,6 @@ async function determineAngularOptions(parsedArgs) {
696
696
  let e2eTestRunner = undefined;
697
697
  let bundler = undefined;
698
698
  let ssr = undefined;
699
- let serverRouting = undefined;
700
699
  const standaloneApi = parsedArgs.standaloneApi;
701
700
  const routing = parsedArgs.routing;
702
701
  const prefix = parsedArgs.prefix;
@@ -810,25 +809,6 @@ async function determineAngularOptions(parsedArgs) {
810
809
  ]);
811
810
  ssr = reply.ssr === 'Yes';
812
811
  }
813
- if (parsedArgs.serverRouting !== undefined) {
814
- serverRouting = parsedArgs.serverRouting;
815
- }
816
- else if (ssr && bundler === 'esbuild') {
817
- const reply = await enquirer.prompt([
818
- {
819
- name: 'serverRouting',
820
- message: 'Would you like to use the Server Routing and App Engine APIs (Developer Preview) for this server application?',
821
- type: 'autocomplete',
822
- choices: [{ name: 'Yes' }, { name: 'No' }],
823
- initial: 1,
824
- skip: !parsedArgs.interactive || (0, is_ci_1.isCI)(),
825
- },
826
- ]);
827
- serverRouting = reply.serverRouting === 'Yes';
828
- }
829
- else {
830
- serverRouting = false;
831
- }
832
812
  unitTestRunner = await determineUnitTestRunner(parsedArgs);
833
813
  e2eTestRunner = await determineE2eTestRunner(parsedArgs);
834
814
  return {
@@ -841,7 +821,6 @@ async function determineAngularOptions(parsedArgs) {
841
821
  e2eTestRunner,
842
822
  bundler,
843
823
  ssr,
844
- serverRouting,
845
824
  prefix,
846
825
  };
847
826
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "create-nx-workspace",
3
- "version": "21.1.1",
3
+ "version": "21.2.0-beta.1",
4
4
  "private": false,
5
- "description": "Smart Monorepos · Fast CI",
5
+ "description": "Smart Repos · Fast Builds",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/nrwl/nx.git",