@team-supercharge/oasg 9.2.1 → 9.2.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [9.2.2](https://gitlab.com/team-supercharge/oasg/compare/v9.2.1...v9.2.2) (2023-04-14)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **angular:** run the npm publish in the right folder ([be32f40](https://gitlab.com/team-supercharge/oasg/commit/be32f40fffbc3f6b080c98adcca809657165b4dc))
11
+ * explicitly install deps to Docker-embedded oasg ([fb83ece](https://gitlab.com/team-supercharge/oasg/commit/fb83ecea2c8756dab942284f014fdcd695529719))
12
+
5
13
  ### [9.2.1](https://gitlab.com/team-supercharge/oasg/compare/v9.2.0...v9.2.1) (2023-04-13)
6
14
 
7
15
 
package/Dockerfile CHANGED
@@ -2,6 +2,7 @@ FROM node:18.15.0
2
2
 
3
3
  WORKDIR /app
4
4
  COPY . .
5
+ RUN npm ci
5
6
  RUN chmod +x setup.sh && ./setup.sh
6
7
 
7
8
  WORKDIR /
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-supercharge/oasg",
3
- "version": "9.2.1",
3
+ "version": "9.2.2",
4
4
  "description": "Node-based tool to lint OpenAPI documents and generate clients, servers and documentation from them",
5
5
  "author": "Supercharge",
6
6
  "license": "MIT",
@@ -2,9 +2,6 @@
2
2
 
3
3
  source $(dirname "$0")/../common.sh
4
4
 
5
- cd out/$targetId
6
- # need to publish dist directory
5
+ cd out/$targetId/dist
7
6
  npm publish \
8
- dist \
9
7
  $(if [[ "$preRelease" == "true" ]]; then echo "--tag next"; fi)
10
- cd ../..