Skip to content

Commit ad6554a

Browse files
committed
Fixed deploy script
1 parent 5fc8dc4 commit ad6554a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-html-css",
33
"displayName": "HTML CSS Support",
44
"description": "CSS Intellisense for HTML",
5-
"version": "1.12.0",
5+
"version": "1.12.1",
66
"publisher": "ecmel",
77
"license": "MIT",
88
"homepage": "https://github.com/ecmel/vscode-html-css",
@@ -76,7 +76,8 @@
7676
"watch-tests": "tsc -p . -w --outDir out",
7777
"pretest": "npm run compile-tests && npm run compile && npm run lint",
7878
"lint": "eslint src --ext ts",
79-
"test": "node ./out/test/runTest.js"
79+
"test": "node ./out/test/runTest.js",
80+
"deploy": "vsce publish"
8081
},
8182
"devDependencies": {
8283
"@types/css-tree": "^1.0.7",

src/test/suite/extension.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ suite("Extension Test Suite", () => {
1515
new Position(1, 14)
1616
);
1717

18-
// TODO
1918
assert.strictEqual(list?.items[0].insertText, "some");
2019
});
2120
});

0 commit comments

Comments
 (0)