Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"extends": "standard",
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"settings": {
"import/resolver": "typescript"
},
"parser": "@typescript-eslint/parser",
"rules": {
"no-var": "error"
}
}
},
"root": true
}
3 changes: 3 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"jobs": 1
}
12 changes: 12 additions & 0 deletions @types/dotgitignore.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
declare module 'dotgitignore' {
interface Options {
readonly cwd?: URL | string;
readonly type?: 'file' | 'directory';
readonly allowSymlinks?: boolean;
}
interface DotGitIgnoreInstance {
ignore(name: string): boolean;
}
function DotGitIgnore(opts?: Options): DotGitIgnoreInstance;
export default DotGitIgnore;
}
23 changes: 23 additions & 0 deletions TEST_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)

## [1.0.2](https://github.com/SharpSeeEr/commit-and-tag-version/compare/v11.2.1...v1.0.2) (2023-04-12)
7 changes: 7 additions & 0 deletions argstest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import argv from './command';
function main() {
console.log((argv as any).bumpFiles);
}

console.dir(argv);
main();
160 changes: 0 additions & 160 deletions command.js

This file was deleted.

Loading