mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
16 lines
282 B
Bash
Executable File
16 lines
282 B
Bash
Executable File
#!/bin/sh
|
||
|
||
echo "Hello World!"
|
||
# create judge dir
|
||
mkdir -p /river/runner
|
||
# 运行的上层目录创建 node_modules,以便 Node 与 TypeScript 使用
|
||
cd /river/runner
|
||
npm init -y
|
||
npm i @types/node
|
||
|
||
cd /plugins/js
|
||
npm install
|
||
npm install -g ts-node typescript
|
||
|
||
echo "Hello World!"
|