PGP build fixes
This commit is contained in:
parent
60e590f75c
commit
0e0f081a79
9 changed files with 7 additions and 13 deletions
|
|
@ -60,7 +60,7 @@ export const createZPM = async ({ name, displayName, version }: Record<string, s
|
|||
const main = async () => {
|
||||
const packageJSON = JSON.parse(await fs.readFile("./package.json", "utf-8"));
|
||||
const { name, displayName, version } = packageJSON;
|
||||
console.log(`Building ${displayName} v${version}`);
|
||||
console.log(`Building addon ${displayName} v${version}`);
|
||||
await createZPM({ name, displayName, version });
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@
|
|||
"build": "tsc"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
"license": "AGPL-3.0-or-later"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@
|
|||
"zammad-addon-common": "*"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
"license": "AGPL-3.0-or-later"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@
|
|||
"zammad-addon-common": "*"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
"license": "AGPL-3.0-or-later"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "zammad-addon-pgp",
|
||||
"displayName": "PGP Support",
|
||||
"displayName": "PGP",
|
||||
"version": "2.0.0",
|
||||
"description": "Adds PGP integration into [Zammad](https://zammad.org) via [Sequoia](https://sequoia-pgp.org).",
|
||||
"scripts": {
|
||||
|
|
@ -11,5 +11,5 @@
|
|||
"zammad-addon-common": "*"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
"license": "AGPL-3.0-or-later"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
class PGPSupport < ActiveRecord::Migration[5.2]
|
||||
class PGP < ActiveRecord::Migration[5.2]
|
||||
def self.up
|
||||
# return if it's a new setup
|
||||
# return unless Setting.exists?(name: 'system_init_done')
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue