Skip to content

Commit cafe18f

Browse files
committed
chore: update deps and clean up package
1 parent 049f241 commit cafe18f

10 files changed

+1140
-204
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/package
44
*.js
55
*.js.map
6+
*.d.ts
67
.tsdrc
78
*.tgz
89
npm-debug.log

.npmignore

-8
This file was deleted.

index.d.ts

-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +0,0 @@
1-
export interface Reporter {
2-
log?(msg: string): void;
3-
warn?(msg: string): void;
4-
}
5-
6-
export interface Patch {
7-
name: string;
8-
read(): string;
9-
}
10-
11-
export class PlistSession {
12-
constructor(console: Reporter);
13-
public patch(patch: Patch): void;
14-
public build(): string;
15-
}
16-
17-
export interface IPlistMerger {
18-
merge(base: any, patch: any): any;
19-
}
20-
21-
export interface ICFBundleURLType {
22-
CFBundleTypeRole: string;
23-
CFBundleURLSchemes: string[];
24-
}

0 commit comments

Comments
 (0)