update for vue3 compilance
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f9459d64fa
commit
f7df86b0b1
31
.drone.yml
31
.drone.yml
@ -6,6 +6,9 @@ name: npm-publish-snapshot
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
branch:
|
||||
exclude:
|
||||
- master
|
||||
|
||||
steps:
|
||||
- name: publish-snapshot
|
||||
@ -22,3 +25,31 @@ steps:
|
||||
- npm version $SNAPSHOT
|
||||
- npm publish --tag snapshot
|
||||
# - npm dist-tag add @ioprojects/ui-eslint-base@$SNAPSHOT snapshot
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: npm-publish-release
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
branch:
|
||||
- master
|
||||
|
||||
steps:
|
||||
- name: publish-release
|
||||
image: node:18
|
||||
environment:
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea_token
|
||||
VERSION: ${NEW_VERSION}
|
||||
commands:
|
||||
- git fetch --tags
|
||||
- OLD_VERSION=$(cat VERSION 2>/dev/null) || echo "1.0.0"
|
||||
- echo $NEW_VERSION
|
||||
- echo $OLD_VERSION
|
||||
- npm ci
|
||||
- npm version $NEW_VERSION
|
||||
- npm publish
|
||||
# - npm dist-tag add @ioprojects/ui-eslint-base@$SNAPSHOT snapshot
|
||||
|
@ -15,7 +15,7 @@
|
||||
},
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:react/recommended",
|
||||
"plugin:vue/vue3-essential",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
"plugin:prettier/recommended"
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user