We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a06395 commit b26fb25Copy full SHA for b26fb25
generator.js
@@ -1,3 +1,7 @@
1
+const fs = require('fs')
2
+
3
module.exports = (api, options, rootOptions) => {
4
api.render("./template")
5
6
+ fs.appendFileSync(api.resolve(".gitignore"), "\n# Compiled Lambda functions\n/lambda/\n")
7
}
package.json
@@ -1,13 +1,13 @@
{
"name": "vue-cli-plugin-netlify-lambda",
- "version": "0.0.1",
- "description": "",
+ "version": "0.1.0",
+ "description": "Vue Cli plugin for adding Netlify Lambda",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
8
},
9
- "author": "",
10
- "license": "ISC",
+ "author": "Netlify",
+ "license": "MIT",
11
"dependencies": {
12
"netlify-lambda": "1.0.0-babel-7-beta"
13
0 commit comments