Skip to content

Commit 1d5d48a

Browse files
authored
Chore/update deps (#57)
Chore/update deps
2 parents 78e38ab + 8fbf977 commit 1d5d48a

File tree

2 files changed

+109
-2
lines changed

2 files changed

+109
-2
lines changed

.gitignore

Lines changed: 66 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
.vscode
1+
.vscode/*
2+
!.vscode/tasks.json
3+
!.vscode/launch.json
4+
!.vscode/extensions.json
5+
*.code-workspace
6+
27
node_modules
38
*.sublime-*
49
test/dist
@@ -65,4 +70,63 @@ typings/
6570
# FuseBox cache
6671
.fusebox/
6772
# DynamoDB Local files
68-
.dynamodb/
73+
.dynamodb/
74+
*.lcov
75+
# TypeScript cache
76+
*.tsbuildinfo
77+
# Microbundle cache
78+
.rpt2_cache/
79+
.rts2_cache_cjs/
80+
.rts2_cache_es/
81+
.rts2_cache_umd/
82+
# Next.js build output
83+
# Nuxt.js build / generate output
84+
dist
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
# TernJS port file
91+
.tern-port
92+
# General
93+
.DS_Store
94+
.AppleDouble
95+
.LSOverride
96+
# Icon must end with two \r
97+
Icon
98+
# Thumbnails
99+
._*
100+
# Files that might appear in the root of a volume
101+
.DocumentRevisions-V100
102+
.fseventsd
103+
.Spotlight-V100
104+
.TemporaryItems
105+
.Trashes
106+
.VolumeIcon.icns
107+
.com.apple.timemachine.donotpresent
108+
# Directories potentially created on remote AFP share
109+
.AppleDB
110+
.AppleDesktop
111+
Network Trash Folder
112+
Temporary Items
113+
.apdisk
114+
# Windows thumbnail cache files
115+
Thumbs.db
116+
Thumbs.db:encryptable
117+
ehthumbs.db
118+
ehthumbs_vista.db
119+
# Dump file
120+
*.stackdump
121+
# Folder config file
122+
[Dd]esktop.ini
123+
# Recycle Bin used on file shares
124+
$RECYCLE.BIN/
125+
# Windows Installer files
126+
*.cab
127+
*.msi
128+
*.msix
129+
*.msm
130+
*.msp
131+
# Windows shortcuts
132+
*.lnk

.vscode/launch.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "extendscript-debug",
9+
"request": "launch",
10+
"name": "Illustrator test",
11+
"program": "${workspaceFolder}/test/dist/illustrator.js",
12+
"stopOnEntry": false
13+
},
14+
{
15+
"type": "extendscript-debug",
16+
"request": "launch",
17+
"name": "aftereffects test",
18+
"program": "${workspaceFolder}/test/dist/aftereffects.js",
19+
"stopOnEntry": false
20+
},
21+
{
22+
"type": "extendscript-debug",
23+
"request": "launch",
24+
"name": "indesign test",
25+
"program": "${workspaceFolder}/test/dist/indesign.js",
26+
"stopOnEntry": false
27+
},
28+
{
29+
"type": "extendscript-debug",
30+
"request": "launch",
31+
"name": "photoshop test",
32+
"program": "${workspaceFolder}/test/dist/photoshop.js",
33+
"stopOnEntry": false
34+
},
35+
{
36+
"type": "extendscript-debug",
37+
"request": "launch",
38+
"name": "photoshop test",
39+
"program": "${workspaceFolder}/test/dist/photoshop.js",
40+
"stopOnEntry": false
41+
}
42+
]
43+
}

0 commit comments

Comments
 (0)