fix: missing dependency and avoiding label length limit issue
Build / Build-and-ng-test (pull_request) Successful in 1m43s Details

Relates to the following core issues:
* https://github.com/sasjs/core/issues/364
* https://github.com/sasjs/core/issues/363
This commit is contained in:
Allan 2023-11-08 21:36:17 +00:00
parent a00ebea692
commit 91f128c2fe
2 changed files with 8 additions and 8 deletions

14
sas/package-lock.json generated
View File

@ -7,7 +7,7 @@
"name": "dc-sas",
"dependencies": {
"@sasjs/cli": "^4.11.1",
"@sasjs/core": "^4.48.2"
"@sasjs/core": "^4.48.3"
}
},
"node_modules/@coolaj86/urequest": {
@ -116,9 +116,9 @@
"integrity": "sha512-Grwydm5GxBsYk238PZw41XPjXVVQ9vWcvfZ06L2P0bQbvK0sGn7l69JA7H5MGr3QcaLpiD4Kg70cAh7PgE+JOw=="
},
"node_modules/@sasjs/core": {
"version": "4.48.2",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.48.2.tgz",
"integrity": "sha512-j6MzaPci5Tt7+voSSQ4j47AM9Xjl5OEaWjGk7Ba8fm9laBbVJ7hhNo+SOx1nI5DGI7Kw9ov98zJvtn2iD2js9Q=="
"version": "4.48.3",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.48.3.tgz",
"integrity": "sha512-wd1bjPJof3qZ/jX/T3Y22yRo9nlWtVwIdDo3Nsj1KY3abA/oivCR9r3A6tn6clPHcKKvfNqsvTjpPPtpt4K3Lg=="
},
"node_modules/@sasjs/lint": {
"version": "2.3.1",
@ -1834,9 +1834,9 @@
}
},
"@sasjs/core": {
"version": "4.48.2",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.48.2.tgz",
"integrity": "sha512-j6MzaPci5Tt7+voSSQ4j47AM9Xjl5OEaWjGk7Ba8fm9laBbVJ7hhNo+SOx1nI5DGI7Kw9ov98zJvtn2iD2js9Q=="
"version": "4.48.3",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.48.3.tgz",
"integrity": "sha512-wd1bjPJof3qZ/jX/T3Y22yRo9nlWtVwIdDo3Nsj1KY3abA/oivCR9r3A6tn6clPHcKKvfNqsvTjpPPtpt4K3Lg=="
},
"@sasjs/lint": {
"version": "2.3.1",

View File

@ -28,6 +28,6 @@
"private": true,
"dependencies": {
"@sasjs/cli": "^4.11.1",
"@sasjs/core": "^4.48.2"
"@sasjs/core": "^4.48.3"
}
}