plugins - use compiled version by default, zero dependencies

This commit is contained in:
Jan Prochazka
2021-04-17 17:57:31 +02:00
parent 0b1a4ee33f
commit 53480210d4
6 changed files with 13 additions and 32 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-csv",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"homepage": "https://dbgate.org",
"description": "CSV import/export plugin for DbGate",
@@ -18,7 +18,6 @@
"dbgateplugin"
],
"files": [
"src",
"dist",
"icon.svg"
],
@@ -32,11 +31,8 @@
"plugout": "dbgate-plugout dbgate-plugin-csv",
"prepublishOnly": "yarn build"
},
"dependencies": {
"lodash": "^4.17.20",
"csv": "^5.3.2"
},
"devDependencies": {
"csv": "^5.3.2",
"dbgate-plugin-tools": "^1.0.7",
"lodash": "^4.17.20",
"webpack": "^4.42.0",

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-excel",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"description": "MS Excel import/export plugin for DbGate",
"homepage": "https://dbgate.org",
@@ -19,7 +19,6 @@
],
"files": [
"dist",
"src",
"icon.svg"
],
"scripts": {
@@ -32,11 +31,9 @@
"plugout": "dbgate-plugout dbgate-plugin-excel",
"prepublishOnly": "yarn build"
},
"dependencies": {
"lodash": "^4.17.20",
"xlsx": "^0.16.8"
},
"devDependencies": {
"lodash": "^4.17.20",
"xlsx": "^0.16.8",
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-mongo",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"license": "MIT",
"author": "Jan Prochazka",
@@ -18,7 +18,6 @@
],
"files": [
"dist",
"src",
"icon.svg"
],
"scripts": {
@@ -34,9 +33,7 @@
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"webpack-cli": "^3.3.11",
"dbgate-tools": "^4.1.1",
"is-promise": "^4.0.0",
"mongodb": "^3.6.5",

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-mssql",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"homepage": "https://dbgate.org",
"description": "MS SQL connect plugin for DbGate",
@@ -18,7 +18,6 @@
],
"files": [
"dist",
"src",
"icon.svg"
],
"scripts": {
@@ -34,9 +33,7 @@
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"webpack-cli": "^3.3.11",
"dbgate-tools": "^4.1.1",
"tedious": "^9.2.3",
"async-lock": "^1.2.6"

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-mysql",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"homepage": "https://dbgate.org",
"description": "MySQL connect plugin for DbGate",
@@ -18,7 +18,6 @@
],
"files": [
"dist",
"src",
"icon.svg"
],
"scripts": {
@@ -34,9 +33,7 @@
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"webpack-cli": "^3.3.11",
"@verycrazydog/mysql-parser": "^1.2.0",
"dbgate-tools": "^4.1.1",
"mysql2": "^2.2.5"

View File

@@ -1,6 +1,6 @@
{
"name": "dbgate-plugin-postgres",
"main": "src/backend/index.js",
"main": "dist/backend.js",
"version": "4.1.1",
"license": "MIT",
"description": "PostgreSQL connector plugin for DbGate",
@@ -17,7 +17,6 @@
],
"files": [
"dist",
"src",
"icon.svg"
],
"scripts": {
@@ -33,9 +32,7 @@
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"webpack-cli": "^3.3.11",
"dbgate-tools": "^4.1.1",
"lodash": "^4.17.15",
"pg": "^7.17.0",