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 ## [1.2.1] 2020-11-04
- 修复一处书写错误 - 修复一处书写错误

View File

@ -15,7 +15,7 @@
> - .cjs > - .cjs
> - .mjs > - .mjs
> - .json (调用`npm start`来执行) > - .json (调用`npm start`来执行)
> - .py > - .py (默认使用`python3`)
> - .sh > - .sh
> - .swift > - .swift
> - .ts (依赖全局安装的`ts-node`模块) > - .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 * @date 2018/12/20 11:37:54
*/ */
'use strict'
const vsc = require('vscode') const vsc = require('vscode')
const exec = require('child_process').exec const exec = require('child_process').exec
const path = require('path') const path = require('path')
@ -15,7 +13,7 @@ const kill = require('tree-kill')
const log = console.log const log = console.log
const std = vsc.window.createOutputChannel('build-system') const std = vsc.window.createOutputChannel('build-system')
std.out = function(msg) { std.out = function (msg) {
std.appendLine(msg) std.appendLine(msg)
} }
@ -27,7 +25,7 @@ const EXTS = {
'.cjs': 'node', '.cjs': 'node',
'.mjs': 'node', '.mjs': 'node',
'.json': 'npm start', '.json': 'npm start',
'.py': 'python -u', '.py': 'python3 -u',
'.php': 'php', '.php': 'php',
'.sh': 'bash', '.sh': 'bash',
'.swift': 'swift', '.swift': 'swift',

View File

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

View File

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

View File

@ -1 +0,0 @@