Skip to content

Commit

Permalink
chore: Added package-lock.json & Updated to postman-request & Added d…
Browse files Browse the repository at this point in the history
…efaultColor to config files & Added .gitignore
  • Loading branch information
penwoodjon committed Jan 23, 2023
1 parent e427877 commit d0a9c62
Show file tree
Hide file tree
Showing 6 changed files with 410 additions and 7 deletions.
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Ignore Maven Compiled Project Files
*/target/

# Ignore IntelliJ Project Information
*.iml
.idea/

# Ignore Sublime Text Project Files
*.sublime-project
*.sublime-workspace
sftp-config.json

# Ignore Eclipse Project Information
*.settings
*.project
*.classpath
dependency-reduced-pom.xml

# Ignore Excel Files
*.xlsx

# Ignore local log files
*.log
logs/
*.remote-sync.json

# Ignore Generated HTML README Files
README.html

# Ignored installed NPM modules
node_modules/
1 change: 1 addition & 0 deletions config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = {
regex: /CVE-\d{4}-\d{4,7}/
}
],
defaultColor: 'light-pink',
styles: ['./styles/styles.less'],
/**
* Provide custom component logic and template for rendering the integration details block. If you do not
Expand Down
5 changes: 2 additions & 3 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
"regex": "CVE-\\d{4}-\\d{4,7}"
}
],
"styles": [
"./styles/styles.less"
],
"defaultColor": "light-pink",
"styles": ["./styles/styles.less"],
"block": {
"component": {
"file": "./components/block.js"
Expand Down
2 changes: 1 addition & 1 deletion integration.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const request = require('request');
const request = require('postman-request');
const config = require('./config/config');
const async = require('async');
const fs = require('fs');
Expand Down
Loading

0 comments on commit d0a9c62

Please sign in to comment.