@certik/serverless-api 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.7
2
+
3
+ - fixed a typo in pack
4
+
1
5
  # 1.0.6
2
6
 
3
7
  - used manual environmentVariables support
package/lib/pack.js CHANGED
@@ -11,7 +11,7 @@ const mkdirPromise = promisify(fsModule.mkdir);
11
11
  const readdirPromise = promisify(fsModule.readdir);
12
12
  const cpPromise = promisify(fsModule.cp);
13
13
 
14
- const PACK_DIR = ".severless-pack";
14
+ const PACK_DIR = ".serverless-pack";
15
15
  const ZIP_FILE = "all-code.zip";
16
16
  const EXCLUDED_FILES = [
17
17
  "node_modules",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "CertiK Engineering",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
- "version": "1.0.6",
7
+ "version": "1.0.7",
8
8
  "scripts": {
9
9
  "start": "doppler run -- nodemon start-dev.js",
10
10
  "lint": "eslint lib test routes *.js",