Skip to content

Commit 4d3ff9c

Browse files
committed
bump to version 11 (nothing change ...)
1 parent dd56803 commit 4d3ff9c

File tree

4 files changed

+53
-5
lines changed

4 files changed

+53
-5
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"version": "0.1.9",
44
"description": "TypeScript version of Adobe CSInterface",
55
"main": "lib/index.js",
6-
"types" : "lib/index.d.ts",
6+
"types": "lib/index.d.ts",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/ExtendScript/CSInterface.git"
12+
"url": "https://github.com/ExtendScript/CSInterface.git"
1313
},
1414
"keywords": [
1515
"CSInterface",
@@ -18,7 +18,7 @@
1818
"ExtendScript",
1919
"TypeScript"
2020
],
21-
"author": "Manuel Pogge",
21+
"author": "Fabian Morón Zirfas, Manuel Pogge",
2222
"license": "MIT",
2323
"bugs": {
2424
"url": "https://github.com/ExtendScript/CSInterface/issues"

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ export const HostApplication: Partial<HostNameMap> = {
2121
RUSH: "Rush"
2222
};
2323

24-
export * from './v9';
24+
export * from './v11';
2525
export {CSInterface as CSInterfacePromise} from "./utils";
26-
export {default} from './v9'
26+
export {default} from './v11'

src/v10.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**************************************************************************************************
2+
*
3+
* ADOBE SYSTEMS INCORPORATED
4+
* Copyright 2020 Adobe Systems Incorporated
5+
* All Rights Reserved.
6+
*
7+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
8+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
9+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
10+
* written permission of Adobe.
11+
*
12+
**************************************************************************************************/
13+
14+
import CSInterfaceV9 from "./v9";
15+
16+
/**
17+
* CSInterface - v10.0.0
18+
*/
19+
class CSInterface extends CSInterfaceV9 {
20+
21+
}
22+
23+
export * from './v9'
24+
export default CSInterface;

src/v11.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**************************************************************************************************
2+
*
3+
* ADOBE SYSTEMS INCORPORATED
4+
* Copyright 2020 Adobe Systems Incorporated
5+
* All Rights Reserved.
6+
*
7+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
8+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
9+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
10+
* written permission of Adobe.
11+
*
12+
**************************************************************************************************/
13+
14+
import CSInterfaceV10 from "./v10";
15+
16+
/**
17+
* CSInterface - v10.0.0
18+
*/
19+
class CSInterface extends CSInterfaceV10 {
20+
21+
}
22+
23+
export * from './v10'
24+
export default CSInterface;

0 commit comments

Comments
 (0)