mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 18:06:15 -04:00
Added node workspace.
This commit is contained in:
parent
95d99424e1
commit
65046a3ff2
11 changed files with 29 additions and 27 deletions
|
@ -4,12 +4,12 @@
|
|||
// unhandled rejection into an uncaught exception, which does cause Node.js to exit.
|
||||
process.on('unhandledRejection', (err) => { throw err; });
|
||||
|
||||
import fs from 'fs';
|
||||
import childProcess from 'child_process';
|
||||
import fs from 'node:fs';
|
||||
import childProcess from 'node:child_process';
|
||||
import log4js from 'log4js';
|
||||
import path from 'path';
|
||||
import path from 'node:path';
|
||||
import semver from 'semver';
|
||||
import {exec} from 'child_process';
|
||||
import {exec} from 'node:child_process';
|
||||
|
||||
log4js.configure({appenders: {console: {type: 'console'}},
|
||||
categories: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue