mirror of
https://github.com/tauri-apps/tauri-vscode.git
synced 2026-01-31 00:35:18 +01:00
apply version updates
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-vscode": patch
|
||||
---
|
||||
|
||||
Add covector for changelog management.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"tauri-vscode": patch
|
||||
---
|
||||
|
||||
Add `vue-cli-plugin-tauri` support, [original commit](https://github.com/tauri-apps/tauri-vscode/commit/3d306557dab470ed167ed0d6e5b1237e8d22cdc4).
|
||||
8
CHANGELOG.md
Normal file
8
CHANGELOG.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## [0.0.3]
|
||||
|
||||
- Add covector for changelog management.
|
||||
- [0a0811a](https://www.github.com/tauri-apps/tauri-vscode/commit/0a0811a3aa1ddcb3ba60fb155576ca216527be34) feat(workflow) add test, covector on 2020-07-14
|
||||
- Add vue-cli-plugin-tauri support, undefined.
|
||||
- [929075a](https://www.github.com/tauri-apps/tauri-vscode/commit/929075aae15492e2211738a3f54b47c9050558fe) chore(changes) add vue cli plugin change on 2020-07-14
|
||||
163
package.json
163
package.json
@@ -1,81 +1,84 @@
|
||||
{
|
||||
"name": "tauri-vscode",
|
||||
"publisher": "tauri-apps",
|
||||
"displayName": "Tauri",
|
||||
"description": "Enhances the experience of Tauri apps development",
|
||||
"icon": "assets/icon.png",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tauri-apps/tauri-vscode/issues",
|
||||
"email": "smcbreen@microsoft.com"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/tauri-apps/tauri-vscode.git"
|
||||
},
|
||||
"version": "0.0.2",
|
||||
"engines": {
|
||||
"vscode": "^1.46.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"workspaceContains:**/tauri.conf.json",
|
||||
"onCommand:tauri.init",
|
||||
"onCommand:tauri.dev",
|
||||
"onCommand:tauri.build",
|
||||
"onCommand:tauri.build-debug"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"contributes": {
|
||||
"jsonValidation": [{
|
||||
"fileMatch": "tauri.conf.json",
|
||||
"url": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/cli/tauri.js/src/types/config.schema.json"
|
||||
}],
|
||||
"commands": [{
|
||||
"command": "tauri.init",
|
||||
"title": "Init",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.dev",
|
||||
"title": "Dev",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.build",
|
||||
"title": "Build",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.build-debug",
|
||||
"title": "Build with debug",
|
||||
"category": "Tauri"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "yarn run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"lint": "eslint src --ext ts",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "yarn run compile && yarn run lint",
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/glob": "7.1.3",
|
||||
"@types/mocha": "8.0.0",
|
||||
"@types/node": "13.13.14",
|
||||
"@types/vscode": "1.47.0",
|
||||
"@typescript-eslint/eslint-plugin": "3.6.1",
|
||||
"@typescript-eslint/parser": "3.6.1",
|
||||
"eslint": "7.4.0",
|
||||
"mocha": "8.0.1",
|
||||
"typescript": "3.9.6",
|
||||
"vscode-test": "1.4.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"glob": "7.1.6",
|
||||
"run-in-terminal": "^0.0.3"
|
||||
}
|
||||
}
|
||||
"name": "tauri-vscode",
|
||||
"publisher": "tauri-apps",
|
||||
"displayName": "Tauri",
|
||||
"description": "Enhances the experience of Tauri apps development",
|
||||
"icon": "assets/icon.png",
|
||||
"bugs": {
|
||||
"url": "https://github.com/tauri-apps/tauri-vscode/issues",
|
||||
"email": "smcbreen@microsoft.com"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/tauri-apps/tauri-vscode.git"
|
||||
},
|
||||
"version": "0.0.3",
|
||||
"engines": {
|
||||
"vscode": "^1.46.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"workspaceContains:**/tauri.conf.json",
|
||||
"onCommand:tauri.init",
|
||||
"onCommand:tauri.dev",
|
||||
"onCommand:tauri.build",
|
||||
"onCommand:tauri.build-debug"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"contributes": {
|
||||
"jsonValidation": [
|
||||
{
|
||||
"fileMatch": "tauri.conf.json",
|
||||
"url": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/cli/tauri.js/src/types/config.schema.json"
|
||||
}
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
"command": "tauri.init",
|
||||
"title": "Init",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.dev",
|
||||
"title": "Dev",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.build",
|
||||
"title": "Build",
|
||||
"category": "Tauri"
|
||||
},
|
||||
{
|
||||
"command": "tauri.build-debug",
|
||||
"title": "Build with debug",
|
||||
"category": "Tauri"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "yarn run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"lint": "eslint src --ext ts",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "yarn run compile && yarn run lint",
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/glob": "7.1.3",
|
||||
"@types/mocha": "8.0.0",
|
||||
"@types/node": "13.13.14",
|
||||
"@types/vscode": "1.47.0",
|
||||
"@typescript-eslint/eslint-plugin": "3.6.1",
|
||||
"@typescript-eslint/parser": "3.6.1",
|
||||
"eslint": "7.4.0",
|
||||
"mocha": "8.0.1",
|
||||
"typescript": "3.9.6",
|
||||
"vscode-test": "1.4.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"glob": "7.1.6",
|
||||
"run-in-terminal": "^0.0.3"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user