Skip to content
This repository was archived by the owner on Dec 10, 2021. It is now read-only.

Commit 4d9f9a7

Browse files
authored
Merge pull request #2 from conqa/npm-setup
Setting up publishing package
2 parents 41292cc + 079796a commit 4d9f9a7

File tree

4 files changed

+5
-37
lines changed

4 files changed

+5
-37
lines changed

CHANGELOG.md

-32
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,3 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7-
8-
## [Unreleased]
9-
10-
## [0.4.0][] - 2018-04-04
11-
12-
- Various changes
13-
14-
## [0.3.0][] - 2017-08-30
15-
16-
### Changed
17-
18-
- Plugin now generates OpenAPI documentation with a version of `3.0.0` instead of `3.0.0-RC2`.
19-
- Operation now supports `deprecated` and `tags` properties.
20-
- Parameters now support the `content` property.
21-
- Updated various build dependencies.
22-
- OpenAPI definition will now be smaller in most cases, choosing to omit optional properties instead of using empty defaults.
23-
24-
### Fixed
25-
26-
- Handle when `models` is not iterable.
27-
- Handle when `models` have no `schema`.
28-
- Always lowercase the HTTP method to conform to OpenAPI spec.
29-
30-
## [v0.2.1] - 2017-07-07
31-
32-
Last release prior to CHANGELOG being added.
33-
34-
35-
[Unreleased]: https://github.com/temando/serverless-openapi-documentation/compare/v0.4.0...HEAD
36-
[0.4.0]: https://github.com/temando/serverless-openapi-documentation/compare/v0.4.0...v0.4.0
37-
[0.4.0]: https://github.com/temando/serverless-openapi-documentation/compare/v0.3.0...v0.4.0
38-
[0.3.0]: https://github.com/temando/serverless-openapi-documentation/tree/v0.3.0

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "serverless-openapi-documentation",
2+
"name": "@conqa/serverless-openapi-documentation",
33
"version": "1.0.0",
44
"description": "Serverless 1.0 plugin to generate OpenAPI V3 documentation from serverless configuration",
55
"main": "index.js",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/temando/serverless-openapi-documentation.git"
8+
"url": "https://github.com/conqa/serverless-openapi-documentation.git"
99
},
10-
"bugs": "https://github.com/temando/serverless-openapi-documentation/issues",
10+
"bugs": "https://github.com/conqa/serverless-openapi-documentation/issues",
1111
"author": "Abilio Henrique <[email protected]>",
1212
"contributors": [
1313
"Abilio Henrique <[email protected]>",

test/project/openapi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ components:
143143
info:
144144
title: ''
145145
description: ''
146-
version: 249c21ac-b279-4665-8f59-4873a4c151a2
146+
version: 85bfbe6d-64b2-45e3-b74e-d26ba8dfa3bb
147147
paths:
148148
/create:
149149
post:

test/project/serverless.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider:
55
runtime: nodejs6.10
66

77
plugins:
8-
localPath: /Users/alex/dev/serverless-openapi-documentation
8+
localPath: ../../
99
modules:
1010
- build
1111

0 commit comments

Comments
 (0)