Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Monster
Manage
Activity
Members
Plan
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Libraries
Javascript
Monster
Commits
4a01a00e
Verified
Commit
4a01a00e
authored
2 years ago
by
Volker Schukai
Browse files
Options
Downloads
Patches
Plain Diff
chore: commit save point
parent
734c079a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
development/makefiles/target-node-build.mk
+1
-1
1 addition, 1 deletion
development/makefiles/target-node-build.mk
development/makefiles/target-npm-publish.mk
+23
-4
23 additions, 4 deletions
development/makefiles/target-npm-publish.mk
with
24 additions
and
5 deletions
development/makefiles/target-node-build.mk
+
1
−
1
View file @
4a01a00e
...
...
@@ -12,7 +12,7 @@ EXECUTABLES = $(EXECUTABLES:-) $(SPONGE);
.PHONY
:
node-build
## Build Node Components
node-build
:
next-patch-version
$(NODE_MODULES_MODIFIED) $(NODE_PACKAGES)
node-build
:
$(NODE_MODULES_MODIFIED) $(NODE_PACKAGES)
$(
ECHOMARKER
)
"Building Node Components"
$(
ECHO
)
"Version:
$(
PROJECT_VERSION
)
"
$(
ECHO
)
"Source Path:
$(
SOURCE_PATH
)
"
...
...
This diff is collapsed.
Click to expand it.
development/makefiles/target-npm-publish.mk
+
23
−
4
View file @
4a01a00e
...
...
@@ -6,8 +6,27 @@
#############################################################################################
#############################################################################################
.PHONY
:
npm-publish
## publish library to npm
npm-publish
:
node-build
$(
ECHOMARKER
)
"publish library"
.PHONY
:
npm-publish-major
## release major version of package
npm-publish-major
:
$(
ECHOMARKER
)
"release major version"
$(
QUIET
)
$(
MAKE
)
next-major-version
$(
QUIET
)
$(
MAKE
)
node-build
$(
QUIET
)
$(
NPM
)
--prefix
$(
NODE_ROOT_DIR
)
run publish
.PHONY
:
npm-publish-minor
## release minor version of package
npm-publish-minor
:
$(
ECHOMARKER
)
"release minor version"
$(
QUIET
)
$(
MAKE
)
next-minor-version
$(
QUIET
)
$(
MAKE
)
node-build
$(
QUIET
)
$(
NPM
)
--prefix
$(
NODE_ROOT_DIR
)
run publish
.PHONY
:
npm-publish-patch
## release patch version of package
npm-publish-patch
:
$(
ECHOMARKER
)
"release patch version"
$(
QUIET
)
$(
MAKE
)
next-patch-version
$(
QUIET
)
$(
MAKE
)
node-build
$(
QUIET
)
$(
NPM
)
--prefix
$(
NODE_ROOT_DIR
)
run publish
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment