CI
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-05-06 09:17:31 +02:00
parent c1e31f4b0e
commit 8dd9f87267
4 changed files with 23 additions and 1 deletions

20
.drone.yml Normal file
View File

@@ -0,0 +1,20 @@
---
kind: pipeline
type: docker
name: bindableProperty
steps:
- name: build
image: node
commands:
- npm ci
- npm run build:prod
- name: publish
image: plugins/npm
settings:
username:
from_secret: username
password:
from_secret: password
email: kovacsadam07@outlook.hu

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
registry=http://172.16.0.59:4873/

View File

@@ -21,4 +21,4 @@ gulp.task('clean', function () {
}); });
gulp.task('build', builder(false)); gulp.task('build', builder(false));
gulp.task('build:production', builder(true)); gulp.task('build:prod', builder(true));

View File

@@ -3,6 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"build": "gulp build", "build": "gulp build",
"build:prod": "gulp build:prod",
"clean": "gulp clean" "clean": "gulp clean"
}, },
"keywords": [], "keywords": [],