master
yutent 2022-04-28 13:54:51 +08:00
parent 53269a5645
commit 478a45cfeb
6 changed files with 8 additions and 11 deletions

View File

@ -1,4 +1,6 @@
# 更新日志
## [1.3.0] 2022-04-28
- python默认使用python3来执行
## [1.2.1] 2020-11-04
- 修复一处书写错误

View File

@ -15,7 +15,7 @@
> - .cjs
> - .mjs
> - .json (调用`npm start`来执行)
> - .py
> - .py (默认使用`python3`)
> - .sh
> - .swift
> - .ts (依赖全局安装的`ts-node`模块)

View File

@ -1,12 +1,10 @@
/**
* 编译系统
*
* @author yutent<yutent@doui.cc>
* @author yutent<yutent.io@gmail.com>
* @date 2018/12/20 11:37:54
*/
'use strict'
const vsc = require('vscode')
const exec = require('child_process').exec
const path = require('path')
@ -27,7 +25,7 @@ const EXTS = {
'.cjs': 'node',
'.mjs': 'node',
'.json': 'npm start',
'.py': 'python -u',
'.py': 'python3 -u',
'.php': 'php',
'.sh': 'bash',
'.swift': 'swift',

View File

@ -1,11 +1,9 @@
/**
* build system
* @author yutent<yutent@doui.cc>
* @author yutent<yutent.io@gmail.com>
* @date 2018/12/20 10:46:07
*/
'use strict'
const vsc = require('vscode')
const BuildSystem = require('./build_system')

View File

@ -2,7 +2,7 @@
"name": "build-system",
"displayName": "sublime build system",
"description": "🔥 类似sublime的Build System功能, 方便快速调试一些代码片断或想法。",
"version": "1.2.1",
"version": "1.3.0",
"publisher": "yutent",
"author": "Yutent [@yutent]",
"icon": "logo.png",

View File

@ -1 +0,0 @@