Skip to content
This repository was archived by the owner on May 2, 2020. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 567 Bytes

ignoreFiles.md

File metadata and controls

20 lines (13 loc) · 567 Bytes

Configure .gitignore and .npmignore files

This page is part of the App Framework Documentation


The .gitignore and .npmignore files are updated automatically, based on a default configuration.

You can overwrite this configuration in gitignore and npmignore objects in the app/config.json file.

Example: Add a custom folder to the .npmignore file and remove the .editorconfig file

"npmignore": {
  "customFolder/": true,
  ".editorconfig": false
}

true means, the path will be listed in the ignore file.