Fix Makefile
This commit is contained in:
parent
0137e04d70
commit
ad851c8a7f
83
Makefile
83
Makefile
@ -1,3 +1,39 @@
|
|||||||
|
# Generic Makefile for building and packaging a Nextcloud app which uses npm and
|
||||||
|
# Composer.
|
||||||
|
#
|
||||||
|
# Dependencies:
|
||||||
|
# * make
|
||||||
|
# * which
|
||||||
|
# * curl: used if phpunit and composer are not installed to fetch them from the web
|
||||||
|
# * tar: for building the archive
|
||||||
|
# * npm: for building and testing everything JS
|
||||||
|
#
|
||||||
|
# If no composer.json is in the app root directory, the Composer step
|
||||||
|
# will be skipped. The same goes for the package.json which can be located in
|
||||||
|
# the app root or the js/ directory.
|
||||||
|
#
|
||||||
|
# The npm command by launches the npm build script:
|
||||||
|
#
|
||||||
|
# npm run build
|
||||||
|
#
|
||||||
|
# The npm test command launches the npm test script:
|
||||||
|
#
|
||||||
|
# npm run test
|
||||||
|
#
|
||||||
|
# The idea behind this is to be completely testing and build tool agnostic. All
|
||||||
|
# build tools and additional package managers should be installed locally in
|
||||||
|
# your project, since this won't pollute people's global namespace.
|
||||||
|
#
|
||||||
|
# The following npm scripts in your package.json install and update the bower
|
||||||
|
# and npm dependencies and use gulp as build system (notice how everything is
|
||||||
|
# run from the node_modules folder):
|
||||||
|
#
|
||||||
|
# "scripts": {
|
||||||
|
# "test": "node node_modules/gulp-cli/bin/gulp.js karma",
|
||||||
|
# "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
|
||||||
|
# "build": "node node_modules/gulp-cli/bin/gulp.js"
|
||||||
|
# },
|
||||||
|
|
||||||
app_name=$(notdir $(CURDIR))
|
app_name=$(notdir $(CURDIR))
|
||||||
build_tools_directory=$(CURDIR)/build/tools
|
build_tools_directory=$(CURDIR)/build/tools
|
||||||
source_build_directory=$(CURDIR)/build/artifacts/source
|
source_build_directory=$(CURDIR)/build/artifacts/source
|
||||||
@ -57,3 +93,50 @@ distclean: clean
|
|||||||
rm -rf node_modules
|
rm -rf node_modules
|
||||||
rm -rf js/vendor
|
rm -rf js/vendor
|
||||||
rm -rf js/node_modules
|
rm -rf js/node_modules
|
||||||
|
|
||||||
|
# Builds the source and appstore package
|
||||||
|
.PHONY: dist
|
||||||
|
dist: build
|
||||||
|
make source
|
||||||
|
make appstore
|
||||||
|
|
||||||
|
# Builds the source package
|
||||||
|
.PHONY: source
|
||||||
|
source:
|
||||||
|
rm -rf $(source_build_directory)
|
||||||
|
mkdir -p $(source_build_directory)
|
||||||
|
tar --exclude-vcs \
|
||||||
|
--exclude="../$(app_name)/build" \
|
||||||
|
--exclude="../$(app_name)/js/node_modules" \
|
||||||
|
--exclude="../$(app_name)/node_modules" \
|
||||||
|
--exclude="../$(app_name)/*.log" \
|
||||||
|
--exclude="../$(app_name)/js/*.log" \
|
||||||
|
-cvzf $(source_package_name).tar.gz ../$(app_name)
|
||||||
|
|
||||||
|
# Builds the source package for the app store, ignores php and js tests
|
||||||
|
.PHONY: appstore
|
||||||
|
appstore:
|
||||||
|
rm -rf $(appstore_build_directory)
|
||||||
|
mkdir -p $(appstore_build_directory)
|
||||||
|
tar --exclude-vcs \
|
||||||
|
--exclude="../$(app_name)/build" \
|
||||||
|
--exclude="../$(app_name)/tests" \
|
||||||
|
--exclude="../$(app_name)/Makefile" \
|
||||||
|
--exclude="../$(app_name)/*.log" \
|
||||||
|
--exclude="../$(app_name)/phpunit*xml" \
|
||||||
|
--exclude="../$(app_name)/composer.*" \
|
||||||
|
--exclude="../$(app_name)/js/node_modules" \
|
||||||
|
--exclude="../$(app_name)/js/tests" \
|
||||||
|
--exclude="../$(app_name)/js/test" \
|
||||||
|
--exclude="../$(app_name)/js/*.log" \
|
||||||
|
--exclude="../$(app_name)/js/package.json" \
|
||||||
|
--exclude="../$(app_name)/js/bower.json" \
|
||||||
|
--exclude="../$(app_name)/js/karma.*" \
|
||||||
|
--exclude="../$(app_name)/js/protractor.*" \
|
||||||
|
--exclude="../$(app_name)/package.json" \
|
||||||
|
--exclude="../$(app_name)/bower.json" \
|
||||||
|
--exclude="../$(app_name)/karma.*" \
|
||||||
|
--exclude="../$(app_name)/protractor\.*" \
|
||||||
|
--exclude="../$(app_name)/.*" \
|
||||||
|
--exclude="../$(app_name)/js/.*" \
|
||||||
|
-cvzf $(appstore_package_name).tar.gz ../$(app_name)
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -22,6 +22,10 @@
|
|||||||
"@nextcloud/eslint-config": "^8.2.1",
|
"@nextcloud/eslint-config": "^8.2.1",
|
||||||
"@nextcloud/stylelint-config": "^2.3.0",
|
"@nextcloud/stylelint-config": "^2.3.0",
|
||||||
"@nextcloud/webpack-vue-config": "^5.5.1"
|
"@nextcloud/webpack-vue-config": "^5.5.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^16.0.0",
|
||||||
|
"npm": "^7.0.0 || ^8.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@ampproject/remapping": {
|
"node_modules/@ampproject/remapping": {
|
||||||
|
Loading…
Reference in New Issue
Block a user