1
1
import { bold , dim } from 'https://deno.land/[email protected] /fmt/colors.ts'
2
- import { walk } from 'https://deno.land/[email protected] /fs/walk.ts'
3
2
import { ensureDir } from 'https://deno.land/[email protected] /fs/ensure_dir.ts'
3
+ import { walk } from 'https://deno.land/[email protected] /fs/walk.ts'
4
4
import { createHash } from 'https://deno.land/[email protected] /hash/mod.ts'
5
5
import {
6
6
basename ,
@@ -22,8 +22,8 @@ import { EventEmitter } from '../framework/core/events.ts'
22
22
import { moduleExts , toPagePath , trimModuleExt } from '../framework/core/module.ts'
23
23
import { RouteModule , Routing } from '../framework/core/routing.ts'
24
24
import {
25
- defaultReactVersion ,
26
- defaultReactEsmShBuildVersion ,
25
+ defaultReactEsmShBuildVersion , defaultReactVersion ,
26
+
27
27
minDenoVersion
28
28
} from '../shared/constants.ts'
29
29
import {
@@ -36,7 +36,7 @@ import util from '../shared/util.ts'
36
36
import type {
37
37
Config ,
38
38
RouterURL ,
39
- ServerApplication ,
39
+ ServerApplication
40
40
} from '../types.ts'
41
41
import { VERSION } from '../version.ts'
42
42
import { Bundler , bundlerRuntimeCode } from './bundler.ts'
@@ -118,8 +118,6 @@ export class Application implements ServerApplication {
118
118
this . #pageRouting. config ( this . config )
119
119
this . #cssProcesser. config ( ! this . isDev , this . config . postcss . plugins )
120
120
121
- console . log ( this . config . postcss . plugins )
122
-
123
121
// inject env variables
124
122
Deno . env . set ( 'ALEPH_VERSION' , VERSION )
125
123
Deno . env . set ( 'ALEPH_BUILD_MODE' , this . mode )
0 commit comments