@kravc/dos 1.8.6 → 1.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kravc/dos",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "description": "Convention-based, easy-to-use library for building API-driven serverless services.",
5
5
  "keywords": [
6
6
  "Service",
@@ -158,9 +158,6 @@ const createSpec = (operations, schemasMap, url) => {
158
158
  }
159
159
 
160
160
  serviceTags = uniq(serviceTags)
161
-
162
- console.log(serviceTags)
163
-
164
161
  serviceTags.sort((a, b) => {
165
162
  const aStartsWithUpper = /^[A-Z]/.test(a)
166
163
  const bStartsWithUpper = /^[A-Z]/.test(b)