create-faas-app 2.6.0 → 2.7.0

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +1 -13
package/README.md CHANGED
@@ -14,3 +14,7 @@ npx create-faas-app --name faasjs
14
14
  # use bun
15
15
  bunx create-faas-app --name faasjs
16
16
  ```
17
+
18
+ ## Variables
19
+
20
+ - [default](variables/default.md)
package/package.json CHANGED
@@ -1,22 +1,10 @@
1
1
  {
2
2
  "name": "create-faas-app",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "import": {
11
- "types": "./dist/index.d.mts",
12
- "default": "./dist/index.mjs"
13
- },
14
- "require": {
15
- "types": "./dist/index.d.ts",
16
- "default": "./dist/index.js"
17
- }
18
- }
19
- },
20
8
  "bin": {
21
9
  "create-faas-app": "index.js"
22
10
  },