Skip to content

Commit bc3d157

Browse files
committed
update expression-globals
1 parent a6d36f8 commit bc3d157

File tree

5 files changed

+370
-369
lines changed

5 files changed

+370
-369
lines changed

package-lock.json

Lines changed: 134 additions & 134 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
{
2-
"name": "ebox",
3-
"version": "1.0.0",
4-
"description": "Create rectangles within After Effects expressions ",
5-
"main": "src/index.ts",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1",
8-
"tsc": "tsc",
9-
"build": "rollup -c",
10-
"watch": "rollup -cw",
11-
"release": "hub release create -a 'dist/eBox.jsx'"
12-
},
13-
"repository": {
14-
"type": "git",
15-
"url": "git+https://github.com/motiondeveloper/ebox.git"
16-
},
17-
"author": "Tim Haywood",
18-
"license": "MIT",
19-
"bugs": {
20-
"url": "https://github.com/motiondeveloper/ebox/issues"
21-
},
22-
"homepage": "https://github.com/motiondeveloper/ebox#readme",
23-
"devDependencies": {
24-
"@rollup/plugin-typescript": "^5.0.2",
25-
"prettier": "^1.16.4",
26-
"rollup": "^2.26.3",
27-
"rollup-plugin-ae-jsx": "^1.1.3",
28-
"tslib": "^2.0.1",
29-
"typescript": "^3.9.7"
30-
},
31-
"dependencies": {
32-
"expression-globals-typescript": "^1.1.1"
33-
}
34-
}
1+
{
2+
"name": "ebox",
3+
"version": "1.0.0",
4+
"description": "Create rectangles within After Effects expressions ",
5+
"main": "src/index.ts",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"tsc": "tsc",
9+
"build": "rollup -c",
10+
"watch": "rollup -cw",
11+
"release": "hub release create -a 'dist/eBox.jsx'"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/motiondeveloper/ebox.git"
16+
},
17+
"author": "Tim Haywood",
18+
"license": "MIT",
19+
"bugs": {
20+
"url": "https://github.com/motiondeveloper/ebox/issues"
21+
},
22+
"homepage": "https://github.com/motiondeveloper/ebox#readme",
23+
"devDependencies": {
24+
"@rollup/plugin-typescript": "^5.0.2",
25+
"prettier": "^1.16.4",
26+
"rollup": "^2.26.5",
27+
"rollup-plugin-ae-jsx": "^1.1.5",
28+
"tslib": "^2.0.1",
29+
"typescript": "^3.9.7"
30+
},
31+
"dependencies": {
32+
"expression-globals-typescript": "^2.0.0"
33+
}
34+
}

prettier.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
2-
trailingComma: "es5",
3-
singleQuote: true,
4-
};
1+
module.exports = {
2+
trailingComma: "es5",
3+
singleQuote: true,
4+
};

rollup.config.js

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
import typescript from '@rollup/plugin-typescript';
2-
import afterEffectJsx from 'rollup-plugin-ae-jsx';
3-
4-
export default {
5-
input: 'src/index.ts',
6-
output: {
7-
file: 'dist/eBox.jsx',
8-
format: 'cjs',
9-
},
10-
plugins: [
11-
typescript({
12-
module: 'esnext',
13-
target: 'esnext',
14-
noImplicitAny: true,
15-
moduleResolution: 'node',
16-
strict: true,
17-
lib: ['esnext'],
18-
}),
19-
afterEffectJsx(),
20-
],
21-
};
1+
import typescript from '@rollup/plugin-typescript';
2+
import afterEffectJsx from 'rollup-plugin-ae-jsx';
3+
4+
export default {
5+
input: 'src/index.ts',
6+
output: {
7+
file: 'dist/eBox.jsx',
8+
format: 'cjs',
9+
},
10+
plugins: [
11+
typescript({
12+
module: 'esnext',
13+
target: 'esnext',
14+
noImplicitAny: true,
15+
moduleResolution: 'node',
16+
strict: true,
17+
lib: ['esnext'],
18+
}),
19+
afterEffectJsx(),
20+
],
21+
};

0 commit comments

Comments
 (0)