master
宇天 2021-07-05 17:51:45 +08:00
parent 4bd92ee621
commit dfdaed18f6
5 changed files with 8 additions and 32 deletions

4
.gitignore vendored
View File

@ -13,4 +13,6 @@ package-lock.json
node_modules
.vscode-test
*.vsix
out.js
*.vsix
*.css

View File

@ -5,7 +5,6 @@ test/**
package-lock.json
.travis.yml
.gitignore
entry.js
rollup.config.js
index.js
test.js

View File

@ -64,8 +64,6 @@ const Compiler = {
let target = origin.replace(/\.scss$/, '')
let task = []
console.log(origin, target)
// 说明不是scss文件
if (origin === target) {
return
@ -96,7 +94,6 @@ const Compiler = {
Promise.all(task)
.then(list => {
console.log('>'.repeat(50), '\n', list)
list.forEach(it => {
fs.echo(it.css, it.output)
})

View File

@ -11,7 +11,7 @@
},
"categories": ["Formatters"],
"activationEvents": ["*"],
"main": "index.js",
"main": "out.js",
"contributes": {
"commands": [
{
@ -78,8 +78,8 @@
"yutent"
],
"scripts": {
"start": "npm run vscode:prepublish",
"vscode:prepublish": "rollup -c"
"start": "esbuild entry.js --bundle --outfile=index.js --external:vscode --format=cjs --platform=node",
"vscode:prepublish": "npm start -- --minify"
},
"license": "MIT",
"dependencies": {
@ -89,9 +89,6 @@
"sass": "^1.35.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"rollup": "^2.52.7"
"esbuild": "^0.12.14"
}
}

View File

@ -1,19 +0,0 @@
import json from '@rollup/plugin-json'
import commonjs from '@rollup/plugin-commonjs'
import resolve from '@rollup/plugin-node-resolve'
export default {
input: 'entry.js',
output: {
file: 'index.js',
format: 'cjs'
},
external: ['vscode', 'fs', 'path', 'url', 'events'],
plugins: [
json(),
commonjs({
ignoreDynamicRequires: true
}),
resolve()
]
}