use default registry

This commit is contained in:
Sebastian Sdorra
2019-10-16 10:41:00 +02:00
parent f6c4564a0c
commit 1c42897285
3 changed files with 14 additions and 6 deletions

View File

@@ -3,11 +3,6 @@
"scm-ui/*",
"scm-plugins/*"
],
"command": {
"publish": {
"registry": "http://localhost:4873"
}
},
"npmClient": "yarn",
"useWorkspaces": true,
"version": "2.0.0-SNAPSHOT"

View File

@@ -72,6 +72,19 @@
<skip>${skipTests}</skip>
</configuration>
</execution>
<!--
TODO pass version to deploy script
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<script>deploy</script>
</configuration>
</execution>
-->
</executions>
</plugin>

View File

@@ -1,4 +1,4 @@
const createSnapshotVersion = (baseVersion) => {
const createSnapshotVersion = () => {
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth().toString().padStart(2, "0");