adobe / create-aio-app-template

Create an Adobe Developer App Builder template.
https://adobe.io/app-builder/
Apache License 2.0
2 stars 2 forks source link

templates include _dot files #6

Open purplecabbage opened 2 years ago

purplecabbage commented 2 years ago

Creating a new template correctly includes a .gitignore but there is also a _dot.gitignore file still in the root

shazron commented 2 years ago

invalid, this is expected. the new template creates a generator that has a a _dot.gitignore as an example.

   create test-template/README.md
   create test-template/jest.config.js
   create test-template/package.json
   create test-template/src/index.js
   create test-template/test/index.test.js
   create test-template/test/jest.setup.js
   create test-template/src/templates/index.js
   create test-template/.gitignore
   create test-template/src/templates/_dot.gitignore  <--- this
shazron commented 2 years ago

I see a dupe _dot.gitignore in the root of the generated template however, so that's an issue. Similar in the generator-aio-app issue

.
├── .gitignore
├── _dot.gitignore <--- this
├── install.yml
├── jest.config.js
├── package.json
├── src
│   ├── index.js
│   └── templates
│       ├── _dot.gitignore
│       └── index.js
└── test
    ├── e2e.js
    ├── index.test.js
    └── jest.setup.js