Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit c67d608

Browse files
committed
refactor: remove debug log
1 parent 0e52034 commit c67d608

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

server/app.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { bold, dim } from 'https://deno.land/[email protected]/fmt/colors.ts'
2-
import { walk } from 'https://deno.land/[email protected]/fs/walk.ts'
32
import { ensureDir } from 'https://deno.land/[email protected]/fs/ensure_dir.ts'
3+
import { walk } from 'https://deno.land/[email protected]/fs/walk.ts'
44
import { createHash } from 'https://deno.land/[email protected]/hash/mod.ts'
55
import {
66
basename,
@@ -22,8 +22,8 @@ import { EventEmitter } from '../framework/core/events.ts'
2222
import { moduleExts, toPagePath, trimModuleExt } from '../framework/core/module.ts'
2323
import { RouteModule, Routing } from '../framework/core/routing.ts'
2424
import {
25-
defaultReactVersion,
26-
defaultReactEsmShBuildVersion,
25+
defaultReactEsmShBuildVersion, defaultReactVersion,
26+
2727
minDenoVersion
2828
} from '../shared/constants.ts'
2929
import {
@@ -36,7 +36,7 @@ import util from '../shared/util.ts'
3636
import type {
3737
Config,
3838
RouterURL,
39-
ServerApplication,
39+
ServerApplication
4040
} from '../types.ts'
4141
import { VERSION } from '../version.ts'
4242
import { Bundler, bundlerRuntimeCode } from './bundler.ts'
@@ -118,8 +118,6 @@ export class Application implements ServerApplication {
118118
this.#pageRouting.config(this.config)
119119
this.#cssProcesser.config(!this.isDev, this.config.postcss.plugins)
120120

121-
console.log(this.config.postcss.plugins)
122-
123121
// inject env variables
124122
Deno.env.set('ALEPH_VERSION', VERSION)
125123
Deno.env.set('ALEPH_BUILD_MODE', this.mode)

0 commit comments

Comments
 (0)