Skip to content

Commit da9a504

Browse files
committed
remove experimental warning from dev server
1 parent 7c0efdb commit da9a504

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

packages/api-server/src/watch.ts

-14
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import fs from 'fs'
66
import path from 'path'
77

88
import c from 'ansi-colors'
9-
import chalk from 'chalk'
109
import chokidar from 'chokidar'
1110
import dotenv from 'dotenv'
1211
import { debounce } from 'lodash'
@@ -116,21 +115,8 @@ const rebuildApiServer = () => {
116115

117116
// Start API server
118117

119-
// Check if experimental server file exists
120118
const serverFile = resolveFile(`${rwjsPaths.api.dist}/server`)
121119
if (serverFile) {
122-
const separator = chalk.hex('#ff845e')(
123-
'------------------------------------------------------------------'
124-
)
125-
console.log(
126-
[
127-
separator,
128-
`🧪 ${chalk.green('Experimental Feature')} 🧪`,
129-
separator,
130-
'Using the experimental API server file at api/dist/server.js',
131-
separator,
132-
].join('\n')
133-
)
134120
httpServerProcess = fork(serverFile, [], forkOpts)
135121
} else {
136122
httpServerProcess = fork(

0 commit comments

Comments
 (0)