-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 Real CLI; Use fleek functions instead of the network gateway;
- Loading branch information
1 parent
c283f86
commit fce7ae9
Showing
55 changed files
with
2,416 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module 'update-notifier-cjs'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import en from './en.json'; | ||
|
||
export type En = keyof typeof en; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"spinnerInvokedDelay": "Spinner invoked ({message}) with a {delay}ms delay", | ||
"spinnerStopped": "Spinner stopped ({spinnerMessage})", | ||
"success": "Success", | ||
"warning": "Warning", | ||
"error": "Error", | ||
"mistake": "Oops", | ||
"ready": "Ready", | ||
"aboutFleek": "Build lightning fast Web3 Apps on the Edge", | ||
"appBuildDescription": "Build and deploy your Next.js app to Fleek", | ||
"enableDebugMode": "Enable debug mode", | ||
"printVersionDetails": "Display the version details", | ||
"printHelp": "Print help", | ||
"buildingApp": "Building App", | ||
"buildingNextjsApp": "Building Next.js App", | ||
"building": "Building...", | ||
"bundlingApp": "Bundling App", | ||
"bundlingNextjsApp": "Bundling App", | ||
"bundling": "Bundling...", | ||
"bundlingSuccess": "Next.js app successfully bundled", | ||
"invalidPath": "The path {path} is not valid, you must provide a valid path to your Next.js app's root directory", | ||
"invalidDir": "The path {path} is not a valid directory, you must provide a valid path to your Next.js app's root directory", | ||
"enterProjectName": "Please enter the path to your Next.js project's root directory", | ||
"enterPersonalAccessToken": "Please enter your Fleek personal access token", | ||
"enterProjectId": "Please enter your Fleek project ID", | ||
"appBuildSuccess": "Your Next.js app has been successfully deployed to Fleek", | ||
"creatingAssets": "Assets", | ||
"assetsCreated": "Assets - {url}", | ||
"assetsCreatedDryRun": "Assets - (dry run)", | ||
"creatingFunction": "λ Deploying {name}", | ||
"functionCreated": "λ Deployed {name}", | ||
"functionCreatedDryRun": "λ Deployed {name} - (dry run)", | ||
"nextjsBuildStarted": "Building Next.js app...", | ||
"nextjsBuildSuccess": "Next.js app successfully built", | ||
"nextjsBuildErrorIncludeError": "Failed to build Next.js app: {error}", | ||
"nextjsBuildError": "Failed to build Next.js app.", | ||
"bundlingStarted": "Bundling Next.js app...", | ||
"bundlingErrorIncludeError": "Failed to bundle Next.js app: {error}", | ||
"bundlingError": "Failed to bundle Next.js app.", | ||
"fleekFileUploadErrorIncludeError": "Failed to upload file to Fleek: {error}", | ||
"fleekFileUploadError": "Failed to upload file to Fleek.", | ||
"fleekDirUploadErrorIncludeError": "Failed to upload directory to Fleek: {error}", | ||
"fleekDirUploadError": "Failed to upload directory to Fleek.", | ||
"projectPath": "Project path: {projectPath}", | ||
"buildCommand": "Build command: {buildCommand}", | ||
"fleekSdkAuth": "Authenticating Fleek SDK...", | ||
"fleekSdkAuthError": "Failed to authenticate the Fleek SDK.", | ||
"fleekSdkAuthSuccess": "Fleek SDK authenticated." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.