1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-09 02:10:06 +00:00

fix: adding sasjs/core dependency - see: https://github.com/sasjs/cli/issues/1113

This commit is contained in:
munja
2022-02-05 21:29:03 +01:00
parent 2fe7fba79b
commit df0fa95519
2 changed files with 16 additions and 2 deletions

15
package-lock.json generated
View File

@@ -7,7 +7,8 @@
"name": "@sasjs/core", "name": "@sasjs/core",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@sasjs/cli": "3.6.0" "@sasjs/cli": "3.6.0",
"@sasjs/core": "4.4.4"
} }
}, },
"node_modules/@sasjs/adapter": { "node_modules/@sasjs/adapter": {
@@ -108,6 +109,12 @@
"valid-url": "^1.0.9" "valid-url": "^1.0.9"
} }
}, },
"node_modules/@sasjs/core": {
"version": "4.4.4",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.4.4.tgz",
"integrity": "sha512-gN6d0fvhaofp7buemS5KIOo5Bz8lbqhsEQD7SuH5FZ02MQurmfu7A0Zg0lIEi0w2/ptI4M/sZdF4D2DRh1D5xA==",
"dev": true
},
"node_modules/@sasjs/lint": { "node_modules/@sasjs/lint": {
"version": "1.11.2", "version": "1.11.2",
"resolved": "https://registry.npmjs.org/@sasjs/lint/-/lint-1.11.2.tgz", "resolved": "https://registry.npmjs.org/@sasjs/lint/-/lint-1.11.2.tgz",
@@ -2822,6 +2829,12 @@
} }
} }
}, },
"@sasjs/core": {
"version": "4.4.4",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-4.4.4.tgz",
"integrity": "sha512-gN6d0fvhaofp7buemS5KIOo5Bz8lbqhsEQD7SuH5FZ02MQurmfu7A0Zg0lIEi0w2/ptI4M/sZdF4D2DRh1D5xA==",
"dev": true
},
"@sasjs/lint": { "@sasjs/lint": {
"version": "1.11.2", "version": "1.11.2",
"resolved": "https://registry.npmjs.org/@sasjs/lint/-/lint-1.11.2.tgz", "resolved": "https://registry.npmjs.org/@sasjs/lint/-/lint-1.11.2.tgz",

View File

@@ -33,6 +33,7 @@
"prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks || true" "prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks || true"
}, },
"devDependencies": { "devDependencies": {
"@sasjs/cli": "3.6.0" "@sasjs/cli": "3.6.0",
"@sasjs/core": "4.4.4"
} }
} }