@@ -87,7 +87,7 @@ async function readConfig(path?: string): Promise<Config> {
87
87
] ;
88
88
Object . keys ( config . env || { } ) . forEach ( ( env ) => {
89
89
mirroredFields . forEach ( ( field ) => {
90
- // if it exists on top level, it should exist on env defns
90
+ // if it exists on top level, it should exist on env definitions
91
91
Object . keys ( config [ field ] || { } ) . forEach ( ( fieldKey ) => {
92
92
if ( ! ( fieldKey in config . env [ env ] [ field ] ) ) {
93
93
console . error (
@@ -161,7 +161,7 @@ export async function main(argv: string[]): Promise<void> {
161
161
// of the args in the handle function.I wish we could enforce this pattern, but this
162
162
// comment will have to do for now.
163
163
164
- // also annoying that choices[] doesn't get inferred as an enum. bleh .
164
+ // also annoying that choices[] doesn't get inferred as an enum. 🤷♂ .
165
165
166
166
// [DEPRECATED] generate
167
167
yargs . command (
@@ -358,7 +358,7 @@ export async function main(argv: string[]): Promise<void> {
358
358
await login ( ) ;
359
359
360
360
// TODO: would be nice if it optionally saved login
361
- // creds inside node_modules/.cache or something
361
+ // credentials inside node_modules/.cache or something
362
362
// this way you could have multiple users on a single machine
363
363
}
364
364
) ;
@@ -783,7 +783,7 @@ export async function main(argv: string[]): Promise<void> {
783
783
} ) ;
784
784
} ,
785
785
( ) => {
786
- // "🔬 [DEPRECATED] Preview your code temporarily on cloudflareworkers.com"
786
+ // "🔬 [DEPRECATED] Preview your code temporarily on https:// cloudflareworkers.com"
787
787
console . error (
788
788
"`wrangler preview` has been deprecated, please refer to TODO://some/path for alternatives"
789
789
) ;
0 commit comments