angular / angular-cli

CLI tool for Angular
https://cli.angular.io
MIT License
26.76k stars 11.98k forks source link

Creating a project with existing directory => impossible? #9655

Open sokraflex opened 6 years ago

sokraflex commented 6 years ago

Versions

ng --version: 1.7.0 npm --version: 5.0.3 node --version: v6.9.5 OS: Windows 10, 64-bit

Repro steps

The last step is nowhere officially documented, however, multiple GitHub-issues linked to this, including:

In lack of a documented possibility to create an angular project in an existing directory, I used the above solution.

Observed behavior

Error: Schematic input does not validate against the Schema: {"directory":"./","name":"appName","skipGit":false,"style":"css","version":"1.7.0","commit":{"message":"chore: initial commit from @angular/cli\n\n    _                      _                 ____ _     ___\n   / \\   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|\n  / △ \\ | '_ \\ / _\\` | | | | |/ _\\` | '__|   | |   | |    | |\n / ___ \\| | | | (_| | |_| | | (_| | |      | |___| |___ | |\n/_/   \\_\\_| |_|\\__, |\\__,_|_|\\__,_|_|       \\____|_____|___|\n               |___/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false}
Errors:
  .directory should match format "path"
Schematic input does not validate against the Schema: {"directory":"./","name":"appName","skipGit":false,"style":"css","version":"1.7.0","commit":{"message":"chore: initial commit from @angular/cli\n\n    _                      _                 ____ _     ___\n   / \\   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|\n  / △ \\ | '_ \\ / _\\` | | | | |/ _\\` | '__|   | |   | |    | |\n / ___ \\| | | | (_| | |_| | | (_| | |      | |___| |___ | |\n/_/   \\_\\_| |_|\\__, |\\__,_|_|\\__,_|_|       \\____|_____|___|\n               |___/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false}
Errors:
  .directory should match format "path"

(Yes, the command results in exactly above output - the error message is repeated twice)

Desired behavior

I would expect that angular generates files for a project in the folder, and of course no error message resulting. The files should be located directly in the "test"-folder and not be placed in a subfolder, e.g. "test/appName".

Mention any other details that might be useful (optional)

Using an absolute path instead of a relatively one (in the ng new command) does not change anything, apart from the path-contents of the error message.

Using the command like $ ng new appName --directory . (without the / in the directory path) results in the same error.

Trying to reference the directory from itself by relative path (used as possible workaround) fails with a new error message:

$ mkdir test
$ cd test
$ ng new appName --directory "../test"
Error: Path "/../test" is invalid.
Path "/../test" is invalid.

If there is any other information I might help you with, please tell me.

Workaround

The same result can be achieved by changing into the parent directory and commanding angular to create the app in the sub-directory:

$ mkdir test
$ ng new appName --directory "test"
clydin commented 6 years ago

Unfortunately, the error messaging is currently overly verbose and repeats. There is on ongoing work to improve the error messaging. In this case the the validation is also overly strict and the actual cause is the / in the --directory ./ option. Removing it should prevent the validation error.

sokraflex commented 6 years ago

Unfortunately, when calling --directory ., the error message stays the same:

C:\Users\MyUser\test>ng new appName --directory .
Error: Schematic input does not validate against the Schema: {"directory":".","name":"appName","skipGit":false,"style":"css","version":"1.7.0","commit":{"message":"chore: initial commit from @angular/cli\n\n    _                      _                 ____ _     ___\n   / \\   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|\n  / △ \\ | '_ \\ / _\\` | | | | |/ _\\` | '__|   | |   | |    | |\n / ___ \\| | | | (_| | |_| | | (_| | |      | |___| |___ | |\n/_/   \\_\\_| |_|\\__, |\\__,_|_|\\__,_|_|       \\____|_____|___|\n               |___/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false}
Errors:
  .directory should match format "path"
sokraflex commented 6 years ago

I just gave it another run and I found out that it works if I use a relative path out of a parent directory.

Meaning, when executing the command like this:

$ mkdir test
$ ng new appName --directory "test"

it works fine. However, the original case fails with the described error message:

$ mkdir test
$ cd test
$ ng new appName --directory ./

And the following new test case fails as well, but with a new error message:

$ mkdir test
$ cd test
$ ng new appName --directory "../test"
Error: Path "/../test" is invalid.
Path "/../test" is invalid.

It seems like there are some problems with path resolving?

I'll update my original post to include the workaround for people that land here by google or similar.

clydin commented 6 years ago

You're right. Both . and ./ should work but it appears only an absolute path seems to work. Would you mind trying it with an absolute path to confirm?

sokraflex commented 6 years ago

As already stated in my original post, absolute paths do not work. I tried it with both \ and / notation, only referencing a relative path to a subfolder seems to work.

clydin commented 6 years ago

Absolutes paths work on Mac and linux; the windows drive letter appears to be the problem in that scenario. The initial errors are due to validation of the string argument. The last issue described is actually an unrelated, different issue with an origin in the initialization of the schematic engine.

Krumpet commented 6 years ago

I also encountered this problem: trying to create from within the project folder with --directory . failed with the error described above, as did cd ng new name --directory ./subdirectory

but this worked (without the dot): cd ng new name --directory subdirectory

colmben commented 6 years ago

Just to confirm that absolute paths are NOT working on Ubuntu. Both a root (/) and a home (¬) path don't give the error but actually create a sub-path equivalent to the absolute path underneath the current directory (!). So if you are in /myProject/testProject and you do ng new --dir=/myProject/testProject, it actually creates the project files in /myProject/testProject/myProject/testProject.

jmussman commented 6 years ago

This is a serious issue that was created with the 1.7.0 release.

Some companies have very restricted environments and installing @angular/cli globally is not an option. In other environments programmers work on multiple projects. How @angular/cli creates files could change as versions of @angular change, and installing @angular/cli globally may force the programmer into a version that is not backwards compatible for old projects.

Up to version 1.6.8 you could install @angular/cli locally in the project folder and then create the project in the same folder with "--directory ." Somebody added path checking to 1.7.0, and it refused to allow . or .. in the path name. This functionality needs to be restored ASAP.

denofevil commented 6 years ago

Seems to be caused by incorrect path validation here. Validation checks whether path equals to its normalised version which trims relative things like .. WebStorm project generation is broken due to this.

granite commented 6 years ago

I just ran into this on Windows 8.1 using latest Webstorm using their 'New Project' which creates with angular-cli.

"C:\Program Files\nodejs\node.exe" C:\Users\granite\AppData\Roaming\npm\node_modules\@angular\cli\bin\ng new Testing123 --dir=. Schematic input does not validate against the Schema: {"directory":".","name":"Testing123","skipGit":false,"style":"css","version":"1.7.1","commit": __SNIP__

Errors:Errors:

.directory should match format "path" .directory should match format "path"

Done

Gaspa79 commented 6 years ago

I can confirm that neither relative nor absolute paths are currently working in Windows 10 now. I've done this in the past successfully. Seems to me that the latest update broke it.

I thought I was crazy until I found this

ghost commented 6 years ago

Me too, I'm using with IntelliJ IDEA. The solution is open the terminal and create manually. Not so hard to continue.

yelfeng commented 6 years ago

I have the same issue with @aslthiago .

stiofand commented 6 years ago

same as @aslthiago here in IntellijIdea

shalk commented 6 years ago

ng-cli version 1.7.1 node version 8.9.4 LTS the same issue when i using Intelli IDEA to create angular project

D:\bin\nodejs\node.exe C:\Users\shalk\AppData\Roaming\npm\node_modules\@angular\cli\bin\ng new first-app --dir=. Error: Schematic input does not validate against the Schema: {"directory":".","name":"first-app","skipGit":false,"style":"css","version":"1.7.1","commit":{"message":"chore: initial commit from @angular/cli\n\n _ _ ____ _ ___\n / \\ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _|\n / △ \\ | '_ \\ / _\\ | | | | |/ \` | '| | | | | | |\n / \| | | | (| | || | | (_| | | | || | | |\n// \\| ||\, |\,||\,|| \__|_||\n |/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false} Schematic input does not validate against the Schema: {"directory":".","name":"first-app","skipGit":false,"style":"css","version":"1.7.1","commit":{"message":"chore: initial commit from @angular/cli\n\n _ _\n / \ | | / | | | |\n / △ \ | ' \ / \` | | | | |/ \` | '| | | | | | |\n / \| | | | (| | || | | (| | | | |__| | | |\n// \\| ||\, |\,||\,|| \__|_||\n |/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false} Errors: Errors: .directory should match format "path" .directory should match format "path" Done `

jacsonlinux commented 6 years ago

Webstorm 2017.3.4

Angular CLI: 1.7.2 Node: 9.7.0 OS: linux x64

/usr/bin/node /usr/lib/nodemodules/@angular/cli/bin/ng new untitled --dir=. Error: Schematic input does not validate against the Schema: {"directory":".","name":"untitled","skipGit":false,"style":"css","version":"1.7.2","commit":{"message":"chore: initial commit from @angular/cli\n\n ____ \n / \ _| | / _| | | |\n / △ \ | ' \ / \| | | | |/ _\\ | '| | | | | | |\n / _ \| | | | (| | || | | (| | | | || |_ | |\n// \\| ||\, |\,||\,|| \__|_||\n |/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false} Errors: .directory should match format "path" Schematic input does not validate against the Schema: {"directory":".","name":"untitled","skipGit":false,"style":"css","version":"1.7.2","commit":{"message":"chore: initial commit from @angular/cli\n\n _ _\n / \ | | / | | | |\n / △ \ | ' \ / \` | | | | |/ \` | '| | | | | | |\n / \| | | | (| | || | | (| | | | |__| | | |\n// \\| ||\, |\,||\,|| \__|_||\n |/\n","name":"Angular CLI","email":"angular-cli@angular.io"},"path":"app","sourceDir":"src","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","skipTests":false,"skipInstall":false,"linkCli":false,"minimal":false,"serviceWorker":false} Errors: .directory should match format "path" Done

F0rt1s commented 6 years ago

Angular 6.0.0 beta 4 is also failing with this.

jmussman commented 6 years ago

SargTeX: You labeled this issue as a feature request, but it's definitely a bug. Or a feature that someone thought we needed, but is impeding a significant number of people. Can you relabel as a bug, and maybe freq:high so that someone will notice and address it?

prigara commented 6 years ago

Hi @clydin, @Brocco, @hansl! As @denofevil has already mentioned in his comment, due to the path validation issue it is now impossible to create a new Angular project in WebStorm and other JetBrains IDEs using Angular CLI 1.7.0. The IDE creates a project directory first and only then runs angular-cli in it – that is something we can’t easily change. What can be done to solve the issue? We really hope that it would be possible again to create Angular projects in WebStorm. Thanks!

darrenmothersele commented 6 years ago

I've upgrade from Angular CLI 1.6.8 to Angular CLI: 1.7.3 this morning. I can no longer create projects, in WebStorm, using this in the terminal: ng new --minimal --directory=. exampleapp same error as #issuecomment-369788392 above

darrenmothersele commented 6 years ago

A work around to use the Angular CLI to generate projects in WebStorm (and other JetBrains IDEs) is to create an empty project, open terminal and cd to parent directory, then run

ng new --directory=DIR_NAME example

where DIR_NAME is the project you created, then cd back into the folder and continue to use WebStorm as usual.

jmussman commented 6 years ago

That isn't a solution if you cannot install the command globally, and in a lot of locked-down development environments you can't. Besides, there are a lot of other good reasons you should not install it globally. When the instructions tell you to do so, they are assuming that you only want one version of the command on your computer, and that does not happen in large organizations.

darrenmothersele commented 6 years ago

@jmussman I don't think the bug being reported here (inability to use --directory=.) is dependent on if you have ng installing globally or not. So my advice converts to however you're running the ng new command without installing globally.

jmussman commented 6 years ago

Question then: where is ng being run from in your example?

From: Darren Mothersele notifications@github.com Reply-To: angular/angular-cli reply@reply.github.com Date: Friday, March 9, 2018 at 9:01 AM To: angular/angular-cli angular-cli@noreply.github.com Cc: Joel Mussman jmussman@smallrock.net, Mention mention@noreply.github.com Subject: Re: [angular/angular-cli] Creating a project with existing directory => impossible? (#9655)

@jmussmanhttps://github.com/jmussman I don't think the bug being reported here (inability to use --directory=.) is dependent on if you have ng installing globally or not. So my advice converts to however you're running the ng new command without installing globally.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/angular/angular-cli/issues/9655#issuecomment-371819733, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AF4nuw6mef7zkvqSHGpdzr_vextOFgAqks5tcosogaJpZM4SI1Mi.

ratracegrad commented 6 years ago

ng --version: 6.0.0 npm --version: 5.6.0 node --version: v8.11.1 OS: Mac OS High Sierra 10.13.4, 64-bit

Repro steps

npm install -g @angular/cli
ng new ng-md-01

Observed behavior

Schematic input does not validate against the Schema: {"name":"ng-md-01","version":"6.0.0","newProjectRoot":"projects","skipInstall":false,"linkCli":false,"skipGit":false,"commit":null} Errors:

Data path ".name" should match format "html-selector".

Desired behavior

Angular CLI should have created the directory ng-md-01 and then template out a new application.

Also failed with this command

ng new md-01

Able to succeed with this

ng new md-intro

Possible problem

The use of numbers in name of application??

nalangekrushna commented 6 years ago

seems like downgrading to 1.6.8 is solution for now use this commnads to do this.

npm uninstall -g @angular/cli npm cache clean --force npm install -g @angular/cli@1.6.8

maungnthan commented 6 years ago

Do not use any number in the application name.

ng new latest-app (This works fine)

ng new 60-app (This will fail with below error)

Schematic input does not validate against the Schema: {"name":"60-app","version":"6.0.8","newProjectRoot":"projects","skipInstall":false,"linkCli":false,"skipGit":false,"commit":null} Errors:

Data path ".name" should match format "html-selector".

kay17 commented 6 years ago

I could resolve the error by changing ng new test_essentials to ng new essentials Apart from numbers in the name, apparently an underscore is not accepted either

NDMCreative commented 6 years ago

ng new does not like the underscore " _ " so test_essentials should be put down as testEssentials

arledesma commented 6 years ago

This functionality is also hit and miss across all 6.x versions

Tested with the following:

npm show @angular/cli@6.* version | \
while read pkg version;
do
  echo npm install -g ${pkg};
  echo ng --version;
  v=$(echo ${version} | awk -F\' '{ gsub(/\./,""); print $2; }');
  app="ngCli${v}";
  echo mkdir -p ${app};
  echo pushd ${app};
  echo ng new \"${app}\" --directory=\"./\"  -d;
  echo popd;
  echo echo $(printf "%0.s-" {1..25});
  echo echo;
done | bash -x
version works
6.0.0
6.0.1
6.0.2
6.0.3
6.0.4
6.0.5
6.0.7
6.0.8
6.1.0
6.1.1

versions and output

Package Version
@angular-devkit/architect 0.6.0
@angular-devkit/core 0.6.0
@angular-devkit/schematics 0.6.0
@schematics/angular 0.6.0
@schematics/update 0.6.0
rxjs 6.2.2
typescript 2.7.2

output:

    $ ng new ngCli600 --directory=./ -d
    Schematic input does not validate against the Schema: {"dryRun":true,"directory":"./","skipGit":true,"version":"6.0.0","skipInstall":false,"linkCli":false,"commit":true,"newProjectRoot":"projects","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","style":"css","skipTests":false}
    Errors:

      Data path ".directory" should match format "path".
Package Version
@angular-devkit/architect 0.6.1
@angular-devkit/core 0.6.1
@angular-devkit/schematics 0.6.1
@schematics/angular 0.6.1
@schematics/update 0.6.1
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli601 --directory=./ -d
  Schematic input does not validate against the Schema: {"dryRun":true,"directory":"./","skipGit":true,"version":"6.0.1","skipInstall":false,"linkCli":false,"commit":true,"newProjectRoot":"projects","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","style":"css","skipTests":false}
  Errors:

    Data path ".directory" should match format "path".
Package Version
@angular-devkit/architect 0.6.2
@angular-devkit/core 0.6.2
@angular-devkit/schematics 0.6.2
@schematics/angular 0.6.2
@schematics/update 0.6.2
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli602 --directory=./ -d
  CREATE README.md (1025 bytes)
  CREATE angular.json (3420 bytes)
  CREATE package.json (1313 bytes)
  CREATE tsconfig.json (384 bytes)
  CREATE tslint.json (2805 bytes)
  CREATE .editorconfig (245 bytes)
  CREATE .gitignore (503 bytes)
  CREATE src/environments/environment.prod.ts (51 bytes)
  CREATE src/environments/environment.ts (631 bytes)
  CREATE src/favicon.ico (5430 bytes)
  CREATE src/index.html (295 bytes)
  CREATE src/main.ts (370 bytes)
  CREATE src/polyfills.ts (3194 bytes)
  CREATE src/test.ts (642 bytes)
  CREATE src/assets/.gitkeep (0 bytes)
  CREATE src/styles.css (80 bytes)
  CREATE src/browserslist (375 bytes)
  CREATE src/karma.conf.js (964 bytes)
  CREATE src/tsconfig.app.json (194 bytes)
  CREATE src/tsconfig.spec.json (282 bytes)
  CREATE src/tslint.json (314 bytes)
  CREATE src/app/app.module.ts (314 bytes)
  CREATE src/app/app.component.css (0 bytes)
  CREATE src/app/app.component.html (1141 bytes)
  CREATE src/app/app.component.spec.ts (986 bytes)
  CREATE src/app/app.component.ts (207 bytes)
  CREATE e2e/protractor.conf.js (752 bytes)
  CREATE e2e/src/app.e2e-spec.ts (299 bytes)
  CREATE e2e/src/app.po.ts (208 bytes)
  CREATE e2e/tsconfig.e2e.json (213 bytes)

  NOTE: Run with "dry run" no changes were made.
Package Version
@angular-devkit/architect 0.6.3
@angular-devkit/core 0.6.3
@angular-devkit/schematics 0.6.3
@schematics/angular 0.6.3
@schematics/update 0.6.3
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli603 --directory=./ -d
  CREATE README.md (1025 bytes)
  CREATE angular.json (3420 bytes)
  CREATE package.json (1313 bytes)
  CREATE tsconfig.json (384 bytes)
  CREATE tslint.json (2805 bytes)
  CREATE .editorconfig (245 bytes)
  CREATE .gitignore (503 bytes)
  CREATE src/environments/environment.prod.ts (51 bytes)
  CREATE src/environments/environment.ts (631 bytes)
  CREATE src/favicon.ico (5430 bytes)
  CREATE src/index.html (295 bytes)
  CREATE src/main.ts (370 bytes)
  CREATE src/polyfills.ts (3194 bytes)
  CREATE src/test.ts (642 bytes)
  CREATE src/assets/.gitkeep (0 bytes)
  CREATE src/styles.css (80 bytes)
  CREATE src/browserslist (375 bytes)
  CREATE src/karma.conf.js (964 bytes)
  CREATE src/tsconfig.app.json (194 bytes)
  CREATE src/tsconfig.spec.json (282 bytes)
  CREATE src/tslint.json (314 bytes)
  CREATE src/app/app.module.ts (314 bytes)
  CREATE src/app/app.component.css (0 bytes)
  CREATE src/app/app.component.html (1141 bytes)
  CREATE src/app/app.component.spec.ts (991 bytes)
  CREATE src/app/app.component.ts (207 bytes)
  CREATE e2e/protractor.conf.js (752 bytes)
  CREATE e2e/src/app.e2e-spec.ts (299 bytes)
  CREATE e2e/src/app.po.ts (208 bytes)
  CREATE e2e/tsconfig.e2e.json (213 bytes)

  NOTE: Run with "dry run" no changes were made.
Package Version
@angular-devkit/architect 0.6.4
@angular-devkit/core 0.6.4
@angular-devkit/schematics 0.6.4
@schematics/angular 0.6.4
@schematics/update 0.6.4
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli604 --directory=./ -d
  Schematic input does not validate against the Schema: {"dryRun":true,"directory":"./","skipGit":true,"version":"6.0.4","skipInstall":false,"linkCli":false,"commit":true,"newProjectRoot":"projects","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","style":"css","skipTests":false}
  Errors:

    Data path "" should NOT have additional properties(dryRun).
Package Version
@angular-devkit/architect 0.6.5
@angular-devkit/core 0.6.5
@angular-devkit/schematics 0.6.5
@schematics/angular 0.6.5
@schematics/update 0.6.5
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli605 --directory=./ -d
  CREATE README.md (1025 bytes)
  CREATE angular.json (3420 bytes)
  CREATE package.json (1313 bytes)
  CREATE tsconfig.json (384 bytes)
  CREATE tslint.json (2805 bytes)
  CREATE .editorconfig (245 bytes)
  CREATE .gitignore (503 bytes)
  CREATE src/environments/environment.prod.ts (51 bytes)
  CREATE src/environments/environment.ts (631 bytes)
  CREATE src/favicon.ico (5430 bytes)
  CREATE src/index.html (295 bytes)
  CREATE src/main.ts (370 bytes)
  CREATE src/polyfills.ts (3194 bytes)
  CREATE src/test.ts (642 bytes)
  CREATE src/assets/.gitkeep (0 bytes)
  CREATE src/styles.css (80 bytes)
  CREATE src/browserslist (375 bytes)
  CREATE src/karma.conf.js (964 bytes)
  CREATE src/tsconfig.app.json (194 bytes)
  CREATE src/tsconfig.spec.json (282 bytes)
  CREATE src/tslint.json (314 bytes)
  CREATE src/app/app.module.ts (314 bytes)
  CREATE src/app/app.component.css (0 bytes)
  CREATE src/app/app.component.html (1141 bytes)
  CREATE src/app/app.component.spec.ts (991 bytes)
  CREATE src/app/app.component.ts (207 bytes)
  CREATE e2e/protractor.conf.js (752 bytes)
  CREATE e2e/src/app.e2e-spec.ts (299 bytes)
  CREATE e2e/src/app.po.ts (208 bytes)
  CREATE e2e/tsconfig.e2e.json (213 bytes)

  NOTE: Run with "dry run" no changes were made.
Package Version
@angular-devkit/architect 0.6.7
@angular-devkit/core 0.6.7
@angular-devkit/schematics 0.6.7
@schematics/angular 0.6.7
@schematics/update 0.6.7
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli607 --directory=./ -d
  CREATE README.md (1025 bytes)
  CREATE angular.json (3566 bytes)
  CREATE package.json (1313 bytes)
  CREATE tsconfig.json (384 bytes)
  CREATE tslint.json (2805 bytes)
  CREATE .editorconfig (245 bytes)
  CREATE .gitignore (503 bytes)
  CREATE src/environments/environment.prod.ts (51 bytes)
  CREATE src/environments/environment.ts (631 bytes)
  CREATE src/favicon.ico (5430 bytes)
  CREATE src/index.html (295 bytes)
  CREATE src/main.ts (370 bytes)
  CREATE src/polyfills.ts (3194 bytes)
  CREATE src/test.ts (642 bytes)
  CREATE src/assets/.gitkeep (0 bytes)
  CREATE src/styles.css (80 bytes)
  CREATE src/browserslist (375 bytes)
  CREATE src/karma.conf.js (964 bytes)
  CREATE src/tsconfig.app.json (194 bytes)
  CREATE src/tsconfig.spec.json (282 bytes)
  CREATE src/tslint.json (314 bytes)
  CREATE src/app/app.module.ts (314 bytes)
  CREATE src/app/app.component.css (0 bytes)
  CREATE src/app/app.component.html (1141 bytes)
  CREATE src/app/app.component.spec.ts (991 bytes)
  CREATE src/app/app.component.ts (207 bytes)
  CREATE e2e/protractor.conf.js (752 bytes)
  CREATE e2e/src/app.e2e-spec.ts (304 bytes)
  CREATE e2e/src/app.po.ts (208 bytes)
  CREATE e2e/tsconfig.e2e.json (213 bytes)

  NOTE: Run with "dry run" no changes were made.
Package Version
@angular-devkit/architect 0.6.8
@angular-devkit/core 0.6.8
@angular-devkit/schematics 0.6.8
@schematics/angular 0.6.8
@schematics/update 0.6.8
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli608 --directory=./ -d
  CREATE README.md (1025 bytes)
  CREATE angular.json (3566 bytes)
  CREATE package.json (1313 bytes)
  CREATE tsconfig.json (384 bytes)
  CREATE tslint.json (2805 bytes)
  CREATE .editorconfig (245 bytes)
  CREATE .gitignore (503 bytes)
  CREATE src/environments/environment.prod.ts (51 bytes)
  CREATE src/environments/environment.ts (631 bytes)
  CREATE src/favicon.ico (5430 bytes)
  CREATE src/index.html (295 bytes)
  CREATE src/main.ts (370 bytes)
  CREATE src/polyfills.ts (3194 bytes)
  CREATE src/test.ts (642 bytes)
  CREATE src/assets/.gitkeep (0 bytes)
  CREATE src/styles.css (80 bytes)
  CREATE src/browserslist (375 bytes)
  CREATE src/karma.conf.js (964 bytes)
  CREATE src/tsconfig.app.json (194 bytes)
  CREATE src/tsconfig.spec.json (282 bytes)
  CREATE src/tslint.json (314 bytes)
  CREATE src/app/app.module.ts (314 bytes)
  CREATE src/app/app.component.css (0 bytes)
  CREATE src/app/app.component.html (1141 bytes)
  CREATE src/app/app.component.spec.ts (991 bytes)
  CREATE src/app/app.component.ts (207 bytes)
  CREATE e2e/protractor.conf.js (752 bytes)
  CREATE e2e/src/app.e2e-spec.ts (304 bytes)
  CREATE e2e/src/app.po.ts (208 bytes)
  CREATE e2e/tsconfig.e2e.json (213 bytes)

  NOTE: Run with "dry run" no changes were made.
Package Version
@angular-devkit/architect 0.7.0
@angular-devkit/core 0.7.0
@angular-devkit/schematics 0.7.0
@schematics/angular 0.7.0
@schematics/update 0.7.0
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli610 --directory=./ -d
  Path "/README.md" already exist.
Package Version
@angular-devkit/architect 0.7.1
@angular-devkit/core 0.7.1
@angular-devkit/schematics 0.7.1
@schematics/angular 0.7.1
@schematics/update 0.7.1
rxjs 6.2.2
typescript 2.7.2

output:

  $ ng new ngCli611 --directory=./ -d
  Path "/README.md" already exist.
HASSAANALVI20 commented 6 years ago

1 please help angular 5 project not create using ng new myapp .project stop successfully initialized git

Parth7030 commented 1 year ago

With Latest angular version I guess from V12 you can use: ng generate application <name> [options]