UNPKG
@pedily/extension-scripts
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
Utility that helps creating Extensions for the Cognigy.AI platform
@pedily/extension-scripts
/
dist
/
getExtensionFileName.js
8 lines
(7 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
getExtensionFileName
=
void
0
;
const
getExtensionFileName
= (
packageJSON
) => {
return
`
${packageJSON.name}
.tar.gz`
; };
exports
.
getExtensionFileName
= getExtensionFileName;