Skip to content

Commit baa61e6

Browse files
squash!
1 parent af751e2 commit baa61e6

6 files changed

Lines changed: 37 additions & 323 deletions

File tree

.github/dependabot.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/Dependabot.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/GitHub.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.github/workflows/NPM.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/Node.yml

Lines changed: 0 additions & 100 deletions
This file was deleted.

package.json

Lines changed: 37 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,15 @@
11
{
2-
"name": "__EXTENSIONNAME__",
3-
"displayName": "__DISPLAYNAME__",
4-
"version": "0.0.1",
5-
"private": false,
6-
"description": "__DESCRIPTION__",
7-
"homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator#readme",
8-
"bugs": {
9-
"url": "HTTPS://GitHub.Com/CodeEditorLand/LandPythonDeviceSimulator/issues"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "git+HTTPS://github.com/CodeEditorLand/LandPythonDeviceSimulator.git"
14-
},
15-
"license": "SEE LICENSE IN LICENSE",
16-
"author": {
17-
"name": "Land",
18-
"email": "Land@Playform.Cloud",
19-
"url": "HTTPS://Land.Playform.Cloud"
20-
},
21-
"type": "module",
22-
"main": "./out/extension.js",
23-
"scripts": {
24-
"Document": "Document 'Source/**/*.ts'",
25-
"build": "gulp build",
26-
"check:python": "black src --check",
27-
"check:ts": "prettier --config .prettierrc.yaml --check src/**/*.{css,ts,tsx}",
28-
"clean": "gulp clean",
29-
"compile": "npm-run-all compile:*",
30-
"compile:extension": "gulp compile",
31-
"compile:views": "webpack --mode development",
32-
"format:python": "black src",
33-
"format:ts": "prettier --config .prettierrc.yaml --write src/**/*.{css,ts,tsx}",
34-
"lint:python": "pylint src",
35-
"lint:ts": "tslint -c tslint.json src/**/*.{ts,tsx}",
36-
"prepublishOnly": "Build 'Source/**/*.ts'",
37-
"start": "webpack-dev-server",
38-
"test:api-tests": "pytest src",
39-
"test:extension-tests": "node ./out/test/runTest.js",
40-
"test:ts": "jest",
41-
"watch:extension": "tsc --watch",
42-
"watch:views": "webpack --watch --mode development"
43-
},
2+
"activationEvents": [
3+
"onCommand:deviceSimulatorExpress.common.installDependencies",
4+
"onCommand:deviceSimulatorExpress.common.openSerialMonitor",
5+
"onCommand:deviceSimulatorExpress.common.runSimulator",
6+
"onCommand:deviceSimulatorExpress.common.selectSerialPort",
7+
"onCommand:deviceSimulatorExpress.common.gettingStarted",
8+
"onCommand:deviceSimulatorExpress.common.deployToDevice",
9+
"onCommand:deviceSimulatorExpress.common.newFile",
10+
"onCommand:deviceSimulatorExpress.common.openSimulator",
11+
"onDebug"
12+
],
4413
"contributes": {
4514
"breakpoints": [
4615
{
@@ -225,17 +194,6 @@
225194
}
226195
]
227196
},
228-
"activationEvents": [
229-
"onCommand:deviceSimulatorExpress.common.installDependencies",
230-
"onCommand:deviceSimulatorExpress.common.openSerialMonitor",
231-
"onCommand:deviceSimulatorExpress.common.runSimulator",
232-
"onCommand:deviceSimulatorExpress.common.selectSerialPort",
233-
"onCommand:deviceSimulatorExpress.common.gettingStarted",
234-
"onCommand:deviceSimulatorExpress.common.deployToDevice",
235-
"onCommand:deviceSimulatorExpress.common.newFile",
236-
"onCommand:deviceSimulatorExpress.common.openSimulator",
237-
"onDebug"
238-
],
239197
"dependencies": {
240198
"@types/open": "6.1.0",
241199
"@types/socket.io": "3.0.1",
@@ -248,9 +206,9 @@
248206
"usb-native": "6.0.0",
249207
"util": "0.12.5"
250208
},
209+
"description": "__DESCRIPTION__",
251210
"devDependencies": {
252211
"@playform/build": "0.0.7",
253-
"@playform/document": "0.0.6",
254212
"@types/glob": "8.1.0",
255213
"@types/node": "20.12.7",
256214
"css-loader": "7.1.1",
@@ -264,13 +222,34 @@
264222
"ts-loader": "9.5.1",
265223
"version-from-git": "1.1.1"
266224
},
225+
"displayName": "__DISPLAYNAME__",
267226
"extensionDependencies": [
268227
"ms-python.python"
269228
],
270-
"publishConfig": {
271-
"access": "public"
272-
},
273229
"icon": "assets/icon.png",
230+
"instrumentationKey": "__AIKEY__",
231+
"main": "./out/extension.js",
232+
"name": "__EXTENSIONNAME__",
274233
"preview": true,
275-
"instrumentationKey": "__AIKEY__"
234+
"scripts": {
235+
"Document": "Document 'Source/**/*.ts'",
236+
"build": "gulp build",
237+
"check:python": "black src --check",
238+
"check:ts": "prettier --config .prettierrc.yaml --check src/**/*.{css,ts,tsx}",
239+
"clean": "gulp clean",
240+
"compile": "npm-run-all compile:*",
241+
"compile:extension": "gulp compile",
242+
"compile:views": "webpack --mode development",
243+
"format:python": "black src",
244+
"format:ts": "prettier --config .prettierrc.yaml --write src/**/*.{css,ts,tsx}",
245+
"lint:python": "pylint src",
246+
"lint:ts": "tslint -c tslint.json src/**/*.{ts,tsx}",
247+
"prepublishOnly": "Build 'Source/**/*.ts'",
248+
"start": "webpack-dev-server",
249+
"test:api-tests": "pytest src",
250+
"test:extension-tests": "node ./out/test/runTest.js",
251+
"test:ts": "jest",
252+
"watch:extension": "tsc --watch",
253+
"watch:views": "webpack --watch --mode development"
254+
}
276255
}

0 commit comments

Comments
 (0)