Skip to content

Commit 6262059

Browse files
committed
Update salesforce extensions to latest version.
Update version tag. Update packaging script to minimize package size.
1 parent 00a6840 commit 6262059

File tree

3 files changed

+21
-14
lines changed

3 files changed

+21
-14
lines changed

.vscodeignore

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
.vscode/**
2-
.vscode-test/**
1+
.*
2+
.*/**/*
3+
**/*.pdn
4+
**/*.ts
5+
**/*.vsix
36
out/test/**
7+
out/**/*.test.*
48
out/**/*.map
59
src/**
6-
.gitignore
710
tsconfig.json
8-
vsc-extension-quickstart.md
9-
tslint.json
11+
tslint.json
12+
webpack*.json
13+
package-lock.json

package.json

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "vlocode",
3-
"displayName": "VloCode",
4-
"description": "Vlocity datapack plugin",
5-
"version": "0.2.0",
3+
"displayName": "Vlocode",
4+
"description": "Vlocity developemtn extension",
5+
"version": "0.3.1",
66
"license": "MIT",
77
"author": {
88
"name": "Peter van Gulik",
@@ -109,16 +109,16 @@
109109
}
110110
},
111111
"scripts": {
112-
"vscode:prepublish": "npm-run-all clean compile",
113112
"compile": "npm run compile:extension",
114113
"compile:extension": "webpack",
115114
"compile:tests": "tsc -p ./",
116115
"clean": "rimraf ./out",
117116
"watch": "webpack --watch",
118117
"start": "webpack-dev-server --config-name views",
119-
"postinstall": "node ./node_modules/vscode/bin/install",
120118
"test": "npm run compile:tests && node ./node_modules/vscode/bin/test",
121-
"package": "vsce package"
119+
"postinstall": "node ./node_modules/vscode/bin/install",
120+
"vscode:prepublish": "npm-run-all clean compile",
121+
"package": "modclean -r -n default:safe,default:caution && vsce package"
122122
},
123123
"devDependencies": {
124124
"@types/angular": "^1.6.51",
@@ -130,16 +130,17 @@
130130
"angular": "^1.7.5",
131131
"awesome-typescript-loader": "^5.2.1",
132132
"chai": "^4.2.0",
133+
"cpx": "^1.5.0",
133134
"html-loader": "^0.5.5",
134135
"html-webpack-plugin": "^3.2.0",
136+
"modclean": "^3.0.0-beta.1",
135137
"npm-run-all": "^4.1.3",
136138
"raw-loader": "^0.5.1",
137139
"rimraf": "^2.6.2",
138140
"rxjs": "^6.3.3",
139-
"sinon": "^7.0.0",
141+
"sinon": "^7.1.0",
140142
"tslint": "^5.8.0",
141143
"typescript": "^3.1.3",
142-
"vsce": "^1.52.0",
143144
"vscode": "^1.1.21",
144145
"vscode-languageclient": "^5.1.1",
145146
"webpack": "^4.23.1",
@@ -150,6 +151,8 @@
150151
"zone.js": "^0.8.26"
151152
},
152153
"dependencies": {
154+
"jsforce": "^1.9.1",
155+
"salesforce-alm": "^44.5.0",
153156
"vlocity": "^1.7.7"
154157
}
155158
}

src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Default constants used in this extensipn
33
*/
44
export default class Constants {
5-
public static VERSION = '0.3.0';
5+
public static VERSION = '0.3.1';
66
public static CONFIG_SECTION = 'vlocity';
77
public static OUTPUT_CHANNEL_NAME = 'Vlocity';
88
public static NG_APP_NAME = 'Vlocode';

0 commit comments

Comments
 (0)