chore: just some small nits [skip ci]
This commit is contained in:
parent
5c595dfb05
commit
786a90fb7d
3 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"branches": ["stable"],
|
"branches": ["stable"],
|
||||||
"repositoryUrl": "https://code.relms.dev/ArgonJS/library",
|
"repositoryUrl": "https://code.relms.dev/NeonJS/library",
|
||||||
"ci": true,
|
"ci": true,
|
||||||
"plugins": [
|
"plugins": [
|
||||||
["@semantic-release/commit-analyzer", {
|
["@semantic-release/commit-analyzer", {
|
||||||
|
|
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
@ -6,6 +6,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
environment {
|
environment {
|
||||||
|
GITEA_URL = 'https://code.relms.dev/NeonJS/library'
|
||||||
GITEA_TOKEN = credentials('GITEA_TOKEN')
|
GITEA_TOKEN = credentials('GITEA_TOKEN')
|
||||||
NPM_TOKEN = credentials('NPM_TOKEN')
|
NPM_TOKEN = credentials('NPM_TOKEN')
|
||||||
GIT_AUTHOR_NAME = 'JenkinsCI'
|
GIT_AUTHOR_NAME = 'JenkinsCI'
|
||||||
|
@ -15,6 +16,12 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage('Checkout') {
|
||||||
|
steps {
|
||||||
|
scmSkip(deleteBuild: true, skipPattern:'.*\\[ci skip\\].*')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Dependencies') {
|
stage('Dependencies') {
|
||||||
steps {
|
steps {
|
||||||
echo '==========Installing Dependencies=========='
|
echo '==========Installing Dependencies=========='
|
||||||
|
|
|
@ -5,8 +5,9 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "dist/src/index.js",
|
"main": "dist/src/index.js",
|
||||||
"types": "types/src/index.d.ts",
|
"types": "types/src/index.d.ts",
|
||||||
"repository": "https://code.relms.dev/NeonJS/library.git",
|
"repository": "https://code.relms.dev/NeonJS/library",
|
||||||
"bugs": "https://code.relms.dev/NeonJS/library/issues",
|
"bugs": "https://code.relms.dev/NeonJS/library/issues",
|
||||||
|
"homepage": "https://code.relms.dev/NeonJS/library/src/branch/master/README.md",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Discord",
|
"Discord",
|
||||||
"wrapper",
|
"wrapper",
|
||||||
|
|
Reference in a new issue