This repository has been archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
122 lines (80 loc) · 3.34 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
const { readFile , writeFile , waitForFiles } = require('./modules/filesystem.js')
const { createDirectory , copy , remove } = require('./modules/fsextra.js')
const { resolvePath } = require('./modules/path.js')
const { asyncAwaitTranspile } = require('./modules/transpile.js')
const { listFilesFoldersToCopy , listFilesToTranspile } = require('./modules/readfolder.js')
const pluginOutputPath = resolvePath(__dirname , '..','..', '__build__')
class ServerlessPlugin
{
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.originalServicePath = this.serverless.config.servicePath;
this.commands = {
"async-await": {
usage: 'Transpile async await code to Node 0.12 and higher',
options: {
message: {
usage:
''
},
},
},
};
this.hooks = {
'before:package:initialize': this.prepareServicePath.bind(this),
'before:package:createDeploymentArtifacts' : this.transpileProject.bind(this),
'before:deploy:deploy' : this.cleanup.bind(this),
'before:deploy:function:initialize': this.prepareServicePath.bind(this),
'before:deploy:function:packageFunction': this.transpileProject.bind(this),
'after:deploy:function:packageFunction': this.revertServicePath.bind(this),
'before:deploy:function:deploy': this.cleanup.bind(this),
};
}
prepareServicePath() {
this.serverless.config.servicePath = pluginOutputPath
}
revertServicePath() {
this.serverless.config.servicePath = this.originalServicePath;
}
transpileProject()
{
var projectPath = resolvePath(__dirname , '..' , '..')
var filesToTranspile = []
var filesFolderToCopy = []
var code = ''
var sourceCodePath = ''
var transpiledCode = ''
var transpiledFilePath = ''
var fileFolderSourcePath = ''
var sourceFileFoldersPath = ''
var fileFolderCopyPath = ''
this.serverless.cli.log('Transpiling Async Await...')
createDirectory(pluginOutputPath)
filesToTranspile = listFilesToTranspile( projectPath , [] )
filesFolderToCopy = listFilesFoldersToCopy(projectPath , [] )
for(var fileFolder of filesFolderToCopy )
{
sourceFileFoldersPath = resolvePath(projectPath , fileFolder)
fileFolderCopyPath = resolvePath(pluginOutputPath , fileFolder)
copy( sourceFileFoldersPath , fileFolderCopyPath )
}
for(var file of filesToTranspile)
{
sourceCodePath = resolvePath(projectPath , file)
transpiledFilePath = resolvePath(pluginOutputPath , file)
code = readFile(sourceCodePath , "UTF-8")
transpiledCode = asyncAwaitTranspile(code)
writeFile( transpiledFilePath , transpiledCode)
}
}
cleanup()
{
var serverlessFolder = resolvePath( __dirname , '..' , '..' , '.serverless/')
var serverlessBuildFolder = resolvePath( __dirname ,'..' , '..' , '__build__' , '.serverless')
var pluginOutputPath = resolvePath( __dirname ,'..' , '..' , '__build__/' )
copy(serverlessBuildFolder , serverlessFolder)
remove(pluginOutputPath)
}
}
module.exports = ServerlessPlugin;