Use .nextcloudignore to expclude packaged files

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-01-24 16:29:33 +01:00
Родитель d1920fd2f1
Коммит c47b1eeca9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
2 изменённых файлов: 37 добавлений и 41 удалений

37
.nextcloudignore Normal file
Просмотреть файл

@ -0,0 +1,37 @@
babel.config.js
.babelrc
build
composer.*
CONTRIBUTING.md
coverage
.editorconfig
.eslintrc.js
.git
.gitattributes
.github
.gitignore
Gruntfile.js
.hg
issue_template.md
.jscsrc
.jshintignore
.jshintrc
karma.conf.js
krankerl.toml
l10n/no-php
.tx
Makefile
.nextcloudignore
node_modules
package.json
package-lock.json
.phan
phpunit*xml
postcss.config.js
screenshots
.scrutinizer.yml
src
tests
.travis.yml
vendor/bin
webpack.*

Просмотреть файл

@ -4,44 +4,3 @@ before_cmds = [
"npm install --deps",
"npm run build",
]
exclude = [
"babel.config.js",
".babelrc",
"build",
"composer.json",
"composer.lock",
"composer.phar",
"CONTRIBUTING.md",
"coverage",
".editorconfig",
".eslintrc.js",
".git",
".gitattributes",
".github",
".gitignore",
"Gruntfile.js",
".hg",
"issue_template.md",
".jscsrc",
".jshintignore",
".jshintrc",
"karma.conf.js",
"krankerl.toml",
"l10n/no-php",
".tx",
"Makefile",
"node_modules",
"package.json",
"package-lock.json",
".phan",
"phpunit*xml",
"postcss.config.js",
"screenshots",
".scrutinizer.yml",
"src",
"tests",
".travis.yml",
"vendor/bin",
"webpack.*",
]