Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit dc77d6d

Browse files
authored
Merge pull request #459 from gauravkeshre/gauravkeshre/vorlon/gulp-fixes
Fixed gulp, typescript and other errors
2 parents c73e37d + 4001aec commit dc77d6d

File tree

544 files changed

+18376
-134209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

544 files changed

+18376
-134209
lines changed

.env-snapshot

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
------ DATE ------
2+
Fri Feb 10 2023 1:00:59 PM
3+
------------------
4+
5+
node -v
6+
v18.13.0
7+
8+
9+
gulp -v
10+
CLI version: 2.3.0
11+
Local version: 4.0.2
12+
13+
14+
npm -v
15+
8.19.3
16+
17+
18+
tsc -v
19+
Version 4.9.4

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ DeploymentTools/deployment-package.zip
2121
!/Plugins/Vorlon/plugins/domtimeline/dom-timeline.js
2222
.idea
2323
/Page Analyzer Extension/.gitignore
24+
.DS_Store
25+
output

.vscode/tasks.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,18 @@
77
// ${cwd}: the current working directory of the spawned process
88

99
{
10-
"version": "0.1.0",
10+
"version": "2.0.0",
1111
"command": "gulp",
12-
"isShellCommand": true,
1312
"tasks": [
1413
{
15-
"taskName": "default",
16-
"isBuildCommand": true,
17-
"showOutput": "always"
14+
"label": "default",
15+
"type": "gulp",
16+
"task": "default",
17+
"problemMatcher": [],
18+
"group": {
19+
"_id": "build",
20+
"isDefault": false
21+
}
1822
}
1923
]
2024
}

.vscode/tasks.json.old

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Available variables which can be used inside of strings.
2+
// ${workspaceRoot}: the root folder of the team
3+
// ${file}: the current opened file
4+
// ${fileBasename}: the current opened file's basename
5+
// ${fileDirname}: the current opened file's dirname
6+
// ${fileExtname}: the current opened file's extension
7+
// ${cwd}: the current working directory of the spawned process
8+
9+
{
10+
"version": "0.1.0",
11+
"command": "gulp",
12+
"isShellCommand": true,
13+
"tasks": [
14+
{
15+
"taskName": "default",
16+
"isBuildCommand": true,
17+
"showOutput": "always"
18+
}
19+
]
20+
}

DeploymentTools/deployment-template.json

-286
This file was deleted.

DeploymentTools/dev-deployment-template-parameters.json

-18
This file was deleted.

0 commit comments

Comments
 (0)