Skip to content

Commit 018e1fa

Browse files
committed
Update package.json with new devDependencies and scripts
1 parent c723fb7 commit 018e1fa

File tree

6 files changed

+155
-35
lines changed

6 files changed

+155
-35
lines changed

extension.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"use strict";
2+
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.activate = void 0;
4+
var vscode = require("vscode");
5+
function activate(context) {
6+
// Push up message with text
7+
vscode.window.showInformationMessage('Extension "ZeroSyntax-Highlight" is now active!');
8+
}
9+
exports.activate = activate;

extension.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import * as vscode from 'vscode';
2+
3+
export function activate(context: vscode.ExtensionContext) {
4+
// Push up message with text
5+
vscode.window.showInformationMessage('Extension "ZeroSyntax-Highlight" is now active!');
6+
}

node_modules/.package-lock.json

Lines changed: 61 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)