ibm-cloud-sdk-core 2.17.14 → 2.17.15
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
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.17.15](https://github.com/IBM/node-sdk-core/compare/v2.17.14...v2.17.15) (2022-07-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ensure dist/docs is a directory during build ([#202](https://github.com/IBM/node-sdk-core/issues/202)) ([1b3ef62](https://github.com/IBM/node-sdk-core/commit/1b3ef621e3cbfe0586d433269f63acf77dfa7251))
|
|
7
|
+
|
|
1
8
|
## [2.17.14](https://github.com/IBM/node-sdk-core/compare/v2.17.13...v2.17.14) (2022-05-02)
|
|
2
9
|
|
|
3
10
|
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ibm-cloud-sdk-core",
|
|
3
|
-
"version": "2.17.
|
|
3
|
+
"version": "2.17.15",
|
|
4
4
|
"description": "Core functionality to support SDKs generated with IBM's OpenAPI SDK Generator.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "./es/index.d.ts",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"build:api": "api-extractor run --local",
|
|
88
88
|
"build:md": "api-documenter markdown -i temp --output-folder build/docs",
|
|
89
89
|
"build:doc": "npm-run-all build:api build:md copy:doc",
|
|
90
|
-
"copy:doc": "cp \"temp/ibm-cloud-sdk-core.api.json\" dist/docs",
|
|
90
|
+
"copy:doc": "mkdir -p dist/docs && cp \"temp/ibm-cloud-sdk-core.api.json\" dist/docs",
|
|
91
91
|
"copy:pkg": "package-json-reducer -s \"config devDependencies directories scripts jestSonar jest\" -o ./dist/package.json package.json",
|
|
92
92
|
"postversion": "publisher --no-checks --dry-run",
|
|
93
93
|
"all": "npm-run-all build test lint"
|