dcdx 1.0.0 → 1.0.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/lib/index.js +1 -1
- package/package.json +8 -1
- /package/lib/types/{applications → src/applications}/bamboo.d.ts +0 -0
- /package/lib/types/{applications → src/applications}/base.d.ts +0 -0
- /package/lib/types/{applications → src/applications}/bitbucket.d.ts +0 -0
- /package/lib/types/{applications → src/applications}/confluence.d.ts +0 -0
- /package/lib/types/{applications → src/applications}/jira.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/database-mssql.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/database-mysql.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/database-postgres.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/database.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/profile.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/run-bamboo.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/run-bitbucket.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/run-confluence.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/run-jira.d.ts +0 -0
- /package/lib/types/{commands → src/commands}/run.d.ts +0 -0
- /package/lib/types/{databases → src/databases}/base.d.ts +0 -0
- /package/lib/types/{databases → src/databases}/mssql.d.ts +0 -0
- /package/lib/types/{databases → src/databases}/mysql.d.ts +0 -0
- /package/lib/types/{databases → src/databases}/postgres.d.ts +0 -0
- /package/lib/types/{helpers → src/helpers}/assets.d.ts +0 -0
- /package/lib/types/{helpers → src/helpers}/licences.d.ts +0 -0
- /package/lib/types/{helpers → src/helpers}/network.d.ts +0 -0
- /package/lib/types/{index.d.ts → src/index.d.ts} +0 -0
- /package/lib/types/{types → src/types}/ApplicationOptions.d.ts +0 -0
- /package/lib/types/{types → src/types}/DatabaseEngine.d.ts +0 -0
- /package/lib/types/{types → src/types}/DatabaseOptions.d.ts +0 -0
- /package/lib/types/{types → src/types}/SupportedApplications.d.ts +0 -0
- /package/lib/types/{types → src/types}/SupportedDatabaseDrivers.d.ts +0 -0
- /package/lib/types/{types → src/types}/SupportedDatabaseEngines.d.ts +0 -0
package/lib/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{program as a}from"commander";a.name("dcdx").description("The Unofficial Atlassian Data Center Plugin Development CLI").version(
|
|
2
|
+
import{program as a}from"commander";var s="1.0.1";a.name("dcdx").description("The Unofficial Atlassian Data Center Plugin Development CLI").version(s),a.command("run","Start the Atlassian host application (standalone)",{executableFile:"./commands/run.js"}),a.command("run:jira").description("Start Atlassian Jira").action((()=>{process.argv.splice(2,1,"run","jira"),a.parse(process.argv)})),a.command("run:confluence").description("Start Atlassian Confluence").action((()=>{process.argv.splice(2,1,"run","confluence"),a.parse(process.argv)})),a.command("run:bitbucket").description("Start Atlassian Bitbucket").action((()=>{process.argv.splice(2,1,"run","bitbucket"),a.parse(process.argv)})),a.command("run:bamboo").description("Start Atlassian Bamboo").action((()=>{process.argv.splice(2,1,"run","bamboo"),a.parse(process.argv)})),a.command("database","Start a database engine (standalone)",{executableFile:"./commands/database.js"}),a.command("database:postgres").description("Start PostgreSQL").action((()=>{process.argv.splice(2,1,"database","postgresql"),a.parse(process.argv)})),a.command("database:postgresql").description("Start PostgreSQL").action((()=>{process.argv.splice(2,1,"database","postgresql"),a.parse(process.argv)})),a.command("database:mysql").description("Start MySQL").action((()=>{process.argv.splice(2,1,"database","mysql"),a.parse(process.argv)})),a.command("database:mssql").description("Start Microsoft Sql Server").action((()=>{process.argv.splice(2,1,"database","mssql"),a.parse(process.argv)})),a.command("profile","Run a predefined profile",{executableFile:"./commands/profile.js"}).on("command:*",(s=>{const e=s[0];process.argv.splice(2,1,"profile",e),a.parse(process.argv)})),a.parse(process.argv);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dcdx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": "Collabsoft <info@collabsoft.net>",
|
|
5
5
|
"description": "The Unofficial CLI for Atlassian Data Center Plugin Development",
|
|
6
6
|
"type": "module",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"nodemon": "3.1.0",
|
|
55
55
|
"rollup": "4.14.1",
|
|
56
56
|
"rollup-plugin-executable": "1.6.3",
|
|
57
|
+
"semantic-release": "23.0.8",
|
|
57
58
|
"typescript": "5.4.4",
|
|
58
59
|
"typescript-eslint": "7.6.0"
|
|
59
60
|
},
|
|
@@ -68,5 +69,11 @@
|
|
|
68
69
|
"sequelize": "6.37.2",
|
|
69
70
|
"simple-git": "3.24.0",
|
|
70
71
|
"tedious": "18.1.0"
|
|
72
|
+
},
|
|
73
|
+
"release": {
|
|
74
|
+
"branches": [
|
|
75
|
+
"main",
|
|
76
|
+
"next"
|
|
77
|
+
]
|
|
71
78
|
}
|
|
72
79
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|