Use package.json files to specify more precisely what gets packed
This commit is contained in:
parent
91fc8c52d7
commit
9c5fc2e4d3
5
Makefile
5
Makefile
@ -62,10 +62,6 @@ serve: stamp-npm
|
||||
serve_bg: stamp-npm
|
||||
$(HTTPSERVE) -p $(HTTPSERVE_PORT) -c-1 -s &
|
||||
|
||||
.PHONY: notemps
|
||||
notemps:
|
||||
find -name "*~" -exec rm {} \;
|
||||
|
||||
########################################################################
|
||||
## Translation machinery
|
||||
|
||||
@ -102,7 +98,6 @@ release:
|
||||
make pot
|
||||
make po
|
||||
make build
|
||||
make notemps
|
||||
npm pack
|
||||
|
||||
.PHONY: postrelease
|
||||
|
@ -12,7 +12,11 @@
|
||||
"locale/",
|
||||
"sass/",
|
||||
"sounds/",
|
||||
"src/"
|
||||
"src/*.js",
|
||||
"src/utils/*.js",
|
||||
"src/templates/*.html",
|
||||
"src/templates/*.svg",
|
||||
"src/headless/"
|
||||
],
|
||||
"scripts": {
|
||||
"serve": "webpack-dev-server --config webpack.serve.js",
|
||||
|
@ -7,8 +7,12 @@
|
||||
"license": "MPL-2.0",
|
||||
"main": "dist/converse-headless.min.js",
|
||||
"files": [
|
||||
"**/*.js",
|
||||
"templates/*"
|
||||
"*.js",
|
||||
"*.json",
|
||||
"README.md",
|
||||
"utils/*.js",
|
||||
"templates/*.html",
|
||||
"templates/*.svg"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
Loading…
Reference in New Issue
Block a user