@sap/async-xsjs 2.1.2 → 2.1.3

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,15 +1,17 @@
1
1
  {
2
2
  "name": "@sap/async-xsjs",
3
3
  "description": "Compatibility layer to run XS Classic applications on XS Advanced",
4
- "version": "2.1.2",
5
- "repository": {},
4
+ "version": "2.1.3",
5
+ "repository": {
6
+ "url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
7
+ },
6
8
  "license": "SEE LICENSE IN LICENSE file",
7
9
  "main": "./lib",
8
10
  "dependencies": {
9
11
  "@sap/audit-logging": "^6.3.0",
10
12
  "@sap/e2e-trace": "^5.3.0",
11
13
  "@sap/hana-client": "2.24.26",
12
- "@sap/hdbext": "8.1.7",
14
+ "@sap/hdbext": "8.1.9",
13
15
  "@sap/instance-manager": "^5.2.1",
14
16
  "@sap/jobs-client": "^1.8.5",
15
17
  "@sap/logging": "^8.3.0",
@@ -59,7 +61,7 @@
59
61
  "scripts": {
60
62
  "lint": "eslint -f stylish .",
61
63
  "toc": "markdown-toc -i README.md && markdown-toc -i differences.md",
62
- "prepareRelease": "npm dedupe && clean-packages -i",
64
+ "prepareRelease": "node -e \"const fs=require('fs'); const pkg=require('./package.json'); delete pkg.devDependencies; fs.writeFileSync('./package.tmp.json', JSON.stringify(pkg, null, 2));\" && mv package.json package.bak.json && mv package.tmp.json package.json && npm prune --omit=dev && npm dedupe && npm shrinkwrap --omit=dev && node strip-shrinkwrap.js && mv package.json package.tmp.json && mv package.bak.json package.json && rm package.tmp.json",
63
65
  "test": "node build/test"
64
66
  },
65
67
  "devDependencies": {