@friggframework/devtools 1.3.1--canary.332.09415a3.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.
- package/README.md +9 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ The devtools package includes the following main components:
|
|
|
10
10
|
2. Migrations
|
|
11
11
|
3. Test Utilities
|
|
12
12
|
4. Local runner and deploy tooling
|
|
13
|
+
5. Infrastructure
|
|
13
14
|
|
|
14
15
|
## Frigg CLI
|
|
15
16
|
|
|
@@ -22,6 +23,8 @@ The Frigg CLI is a command-line interface tool that helps developers manage and
|
|
|
22
23
|
- Automatically update project files
|
|
23
24
|
- Handle environment variables
|
|
24
25
|
- Validate package existence and backend paths
|
|
26
|
+
- Run your Frigg instance locally
|
|
27
|
+
- Deploy your Frigg application to your configured provider
|
|
25
28
|
|
|
26
29
|
### Usage
|
|
27
30
|
|
|
@@ -32,6 +35,12 @@ frigg install <api-module-name>
|
|
|
32
35
|
|
|
33
36
|
This command will search for the specified API module, install it, and update your project accordingly.
|
|
34
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
|
+
|
|
35
44
|
## Migrations
|
|
36
45
|
|
|
37
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": "
|
|
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": "
|
|
10
|
-
"@friggframework/test": "
|
|
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": "
|
|
25
|
-
"@friggframework/prettier-config": "
|
|
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": "
|
|
49
|
+
"gitHead": "e37f577d3c14f8eed6584517830c6c61815cf759"
|
|
50
50
|
}
|