@saltcorn/plugins-loader 1.3.1-beta.9 → 1.3.1
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 +2 -2
- package/plugin_installer.js +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saltcorn/plugins-loader",
|
|
3
|
-
"version": "1.3.1
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Saltcorn plugin loader",
|
|
5
5
|
"homepage": "https://saltcorn.com",
|
|
6
6
|
"scripts": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"clean": "echo 'No TypeScript build'"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@saltcorn/data": "1.3.1
|
|
12
|
+
"@saltcorn/data": "1.3.1",
|
|
13
13
|
"env-paths": "^2.2.1",
|
|
14
14
|
"npm-registry-fetch": "17.1.0",
|
|
15
15
|
"https-proxy-agent": "^7.0.6"
|
package/plugin_installer.js
CHANGED
|
@@ -14,7 +14,12 @@ const envPaths = require("env-paths");
|
|
|
14
14
|
const semver = require("semver");
|
|
15
15
|
const path = require("path");
|
|
16
16
|
|
|
17
|
-
const staticDeps = [
|
|
17
|
+
const staticDeps = [
|
|
18
|
+
"@saltcorn/markup",
|
|
19
|
+
"@saltcorn/data",
|
|
20
|
+
"@saltcorn/postgres",
|
|
21
|
+
"jest",
|
|
22
|
+
];
|
|
18
23
|
const fixedPlugins = ["@saltcorn/base-plugin", "@saltcorn/sbadmin2"];
|
|
19
24
|
|
|
20
25
|
const isGitCheckout = async () => {
|