File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -147,14 +147,6 @@ function appToArray(app: any) {
147
147
148
148
type CommandGenerator = ( file : string ) => string [ ] ;
149
149
150
- /**
151
- * Direct execution of a YAML file, assume that we're deploying an Applet
152
- */
153
- function executeApplet ( appletFile : string ) : string [ ] {
154
- const appletBinary = path . resolve ( require . resolve ( '@aws-cdk/applet-js' ) ) ;
155
- return [ process . execPath , appletBinary , appletFile ] ;
156
- }
157
-
158
150
/**
159
151
* Execute the given file with the same 'node' process as is running the current process
160
152
*/
@@ -166,8 +158,6 @@ function executeNode(scriptFile: string): string[] {
166
158
* Mapping of extensions to command-line generators
167
159
*/
168
160
const EXTENSION_MAP = new Map < string , CommandGenerator > ( [
169
- [ '.yml' , executeApplet ] ,
170
- [ '.yaml' , executeApplet ] ,
171
161
[ '.js' , executeNode ] ,
172
162
] ) ;
173
163
Original file line number Diff line number Diff line change 51
51
"sinon" : " ^7.3.1"
52
52
},
53
53
"dependencies" : {
54
- "@aws-cdk/applet-js" : " ^0.33.0" ,
55
54
"@aws-cdk/cloudformation-diff" : " ^0.33.0" ,
56
55
"@aws-cdk/cx-api" : " ^0.33.0" ,
57
56
"@aws-cdk/region-info" : " ^0.33.0" ,
You can’t perform that action at this time.
0 commit comments