Skip to content

Commit 111dec5

Browse files
rootroot
authored andcommitted
1 parent b568435 commit 111dec5

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,6 @@ cython_debug/
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161161
/.vs
162+
163+
164+
node_modules/

Makefile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
install:
2-
npm install -g @quobix/[email protected]
1+
# BIN directory
2+
BIN := $(THIS_DIR)/node_modules/.bin
3+
4+
# Path
5+
PATH := node_modules/.bin:$(PATH)
6+
SHELL := /bin/bash
7+
8+
install-node:
9+
npm install
10+
11+
install: install-node
312

413
lint:
514
vacuum lint -d --base specification/ specification/proxygen.yaml

package-lock.json

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"name": "splunk-monitor",
3+
"version": "0.0.1",
4+
"description": "OAS (Swagger v3) API Definition for Template API",
25
"dependencies": {
36
"@quobix/vacuum": "^0.16.1"
47
}

0 commit comments

Comments
 (0)