@friggframework/devtools 1.3.0--canary.325.891353e.0 → 2.0.0-next.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 +10 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -9,6 +9,8 @@ The devtools package includes the following main components:
9
9
  1. Frigg CLI
10
10
  2. Migrations
11
11
  3. Test Utilities
12
+ 4. Local runner and deploy tooling
13
+ 5. Infrastructure
12
14
 
13
15
  ## Frigg CLI
14
16
 
@@ -21,6 +23,8 @@ The Frigg CLI is a command-line interface tool that helps developers manage and
21
23
  - Automatically update project files
22
24
  - Handle environment variables
23
25
  - Validate package existence and backend paths
26
+ - Run your Frigg instance locally
27
+ - Deploy your Frigg application to your configured provider
24
28
 
25
29
  ### Usage
26
30
 
@@ -31,6 +35,12 @@ frigg install <api-module-name>
31
35
 
32
36
  This command will search for the specified API module, install it, and update your project accordingly.
33
37
 
38
+ ```sh
39
+ frigg start
40
+ ```
41
+
42
+ This command will look for the closest infrastructure.js file and run a start command, programmatically generating the serverless yml needed to run locally.
43
+
34
44
  ## Migrations
35
45
 
36
46
  (Add information about migrations here if available)
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@friggframework/devtools",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "1.3.0--canary.325.891353e.0",
4
+ "version": "2.0.0-next.0",
5
5
  "dependencies": {
6
6
  "@babel/eslint-parser": "^7.18.9",
7
7
  "@babel/parser": "^7.25.3",
8
8
  "@babel/traverse": "^7.25.3",
9
- "@friggframework/core": "1.3.0--canary.325.891353e.0",
10
- "@friggframework/test": "1.3.0--canary.325.891353e.0",
9
+ "@friggframework/core": "^2.0.0-next.0",
10
+ "@friggframework/test": "^2.0.0-next.0",
11
11
  "axios": "^1.7.2",
12
12
  "commander": "^12.1.0",
13
13
  "dotenv": "^16.4.5",
@@ -21,8 +21,8 @@
21
21
  "inquirer": "^10.1.6"
22
22
  },
23
23
  "devDependencies": {
24
- "@friggframework/eslint-config": "1.3.0--canary.325.891353e.0",
25
- "@friggframework/prettier-config": "1.3.0--canary.325.891353e.0"
24
+ "@friggframework/eslint-config": "^2.0.0-next.0",
25
+ "@friggframework/prettier-config": "^2.0.0-next.0"
26
26
  },
27
27
  "scripts": {
28
28
  "lint:fix": "prettier --write --loglevel error . && eslint . --fix",
@@ -46,5 +46,5 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "891353e441b0a025feb1d24a734ce0f8371101d0"
49
+ "gitHead": "e37f577d3c14f8eed6584517830c6c61815cf759"
50
50
  }