@decentm/concourse-ts-resource-apache-directory-index
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "@decentm/concourse-ts-resource-apache-directory-index", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"homepage": "https://github.com/DecentM/concourse-ts/tree/main/packages/concourse-ts-resource-apache-directory-index", | ||
"repository": "https://github.com/DecentM/concourse-ts.git", | ||
"license": "MIT", | ||
"type": "commonjs", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "nx build", | ||
"test": "c8 --reporter=lcov --reporter=text ava", | ||
"t": "yarn test" | ||
"build": "nx build" | ||
}, | ||
"ava": { | ||
"extensions": { | ||
"ts": "module" | ||
}, | ||
"nodeArguments": [ | ||
"--no-warnings", | ||
"--loader=ts-node/esm/transpile-only" | ||
], | ||
"require": [ | ||
"tsconfig-paths/register" | ||
] | ||
}, | ||
"peerDependencies": { | ||
"@decentm/concourse-ts": "0.x" | ||
"@decentm/concourse-ts": "0.x", | ||
"@decentm/concourse-ts-resource-registry-image": "0.x" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.11.18", | ||
"ava": "^5.1.1", | ||
"c8": "^7.12.0", | ||
"ts-node": "^10.9.1", | ||
"tsconfig-paths": "^4.1.2", | ||
"typescript": "^4.9.4" | ||
}, | ||
"main": "./src/index.js", | ||
"types": "./src/index.d.ts" | ||
"exports": { | ||
".": { | ||
"require": "./src/index.js" | ||
} | ||
} | ||
} |
@@ -1,2 +0,33 @@ | ||
export * from './resource-type'; | ||
export * from './resource'; | ||
import * as ConcourseTs from '@decentm/concourse-ts'; | ||
import * as RegistryImage from '@decentm/concourse-ts-resource-registry-image'; | ||
/** | ||
* https://github.com/cloudlena/apache-directory-index-resource | ||
*/ | ||
export type Source = { | ||
/** | ||
* The path of where the your versioned folders reside | ||
*/ | ||
directory: string; | ||
/** | ||
* Describes the pattern of how the folders are named (use $VERSION as a | ||
* placeholder for the version) | ||
*/ | ||
folder_pattern: string; | ||
/** | ||
* Describes the pattern of where the file resides and how it's named (use | ||
* $VERSION as a placeholder for the version) | ||
*/ | ||
file_pattern: string; | ||
/** | ||
* If true then the downloaded file will be expanded into the "expanded" | ||
* directory | ||
*/ | ||
expand?: boolean; | ||
}; | ||
export type PutParams = never; | ||
/** | ||
* No get params, pass an empty object | ||
*/ | ||
export type GetParams = Record<string, never>; | ||
export type Resource = ConcourseTs.Resource<Source, PutParams, GetParams>; | ||
export type ResourceType = ConcourseTs.ResourceType<'registry-image', RegistryImage.Source<'mastertinner/apache-directory-index-resource'>>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./resource-type"), exports); | ||
tslib_1.__exportStar(require("./resource"), exports); | ||
//# sourceMappingURL=index.js.map |
Sorry, the diff of this file is not supported yet
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
0
1
2938
2
5
34