Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grpc-devtool-app",
"productName": "grpc-devtool-app",
"version": "1.0.0",
"name": "grpc-devtool.app",
"productName": "grpc-devtool.app",
"version": "0.0.10",
"description": "GrpcDevtool Gui app.",
"main": "src/index.js",
"scripts": {
Expand All @@ -14,7 +14,7 @@
"keywords": [],
"author": {
"name": "nishant",
"email": "nishant.singh87@gmail.com"
"email": "in.nishants@gmail.com"
},
"license": "MIT",
"config": {
Expand Down
14 changes: 13 additions & 1 deletion azure-pipelines.app.yml → azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,20 @@ pr:
- master

stages:
- stage: BuildCore
displayName: "core/build.yml"
jobs:
- job: BuildCore
displayName: "Build grpc-devtool"
timeoutInMinutes: 10
pool:
vmImage: 'ubuntu-18.04'
steps:
- template: core/build.yml

- stage: BuildUi
displayName: "ui/build.yml"
dependsOn: [] # run in parallel with core build
jobs:
- job: BuilUI
displayName: "Webpack build"
Expand All @@ -17,7 +29,7 @@ stages:
- template: ui/build.yml

- stage: BuildApp
displayName: "ui/build.yml"
displayName: "app/build.yml"
dependsOn: "BuildUi"
jobs:
- job: MacOs
Expand Down
25 changes: 0 additions & 25 deletions core/azure-pipelines.yml

This file was deleted.

15 changes: 15 additions & 0 deletions core/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

- script: |
cd core
npm install
displayName: 'npm install'

- script: |
cd core
npm test
displayName: 'npm test'
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"scripts": {
"test": "jest"
},
"author": "",
"author": "nishants",
"license": "MIT",
"bin": {
"grpc": "./bin/grpc.js"
Expand Down
8 changes: 4 additions & 4 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "A light foundation for your next frontend project based on webpack.",
"name": "grpc-devtool.ui",
"version": "0.0.10",
"description": "UI for GrpcDevtool",
"scripts": {
"lint": "npm run lint:styles; npm run lint:scripts",
"lint:styles": "stylelint src",
Expand All @@ -22,7 +22,7 @@
"javascript",
"webdev"
],
"author": "webkid.io",
"author": "nishants",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbkd/webpack-starter/issues"
Expand Down