Skip to content

Commit 45066a5

Browse files
committed
Merge-office-addin-taskpane/master
1 parent 686ad88 commit 45066a5

File tree

7 files changed

+1261
-781
lines changed

7 files changed

+1261
-781
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @OfficeDev/office-platform-devx

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
1212
"args": [
1313
"-u",
14-
"tdd",
14+
"bdd",
1515
"--timeout",
1616
"999999",
1717
"--colors",

convertToSingleHost.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ const unlinkFileAsync = util.promisify(fs.unlink);
88
const writeFileAsync = util.promisify(fs.writeFile);
99

1010
async function removeTestInfraStructure() {
11-
deleteFolder(path.resolve(`${process.cwd()}/test`));
12-
deleteFolder(path.resolve(`${process.cwd()}/.github`));
11+
deleteFolder(path.resolve(`./test`));
12+
13+
// delete the .github folder
14+
deleteFolder(path.resolve(`./.github`));
15+
1316
await updatePackageJsonFile();
1417
await updateLaunchJsonFile();
1518
// delete this script

package-lock.json

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

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,33 +32,33 @@
3232
},
3333
"dependencies": {},
3434
"devDependencies": {
35-
"@babel/core": "^7.4.5",
35+
"@babel/core": "^7.5.4",
3636
"@babel/polyfill": "^7.4.4",
37-
"@babel/preset-env": "^7.4.5",
38-
"@types/custom-functions-runtime": "^1.4.11",
37+
"@babel/preset-env": "^7.5.4",
38+
"@types/custom-functions-runtime": "^1.5.0",
3939
"@types/mocha": "^5.2.7",
40-
"@types/node": "^12.0.4",
41-
"@types/office-js": "^1.0.9",
40+
"@types/node": "^12.6.3",
41+
"@types/office-js": "^1.0.19",
4242
"@types/office-runtime": "^1.0.8",
4343
"babel-loader": "^8.0.6",
44-
"clean-webpack-plugin": "^2.0.1",
44+
"clean-webpack-plugin": "^3.0.0",
4545
"copy-webpack-plugin": "^5.0.3",
46-
"custom-functions-metadata-plugin": "^1.0.0",
47-
"file-loader": "^3.0.1",
46+
"custom-functions-metadata-plugin": "^1.0.1",
47+
"file-loader": "^4.0.0",
4848
"html-loader": "^0.5.5",
4949
"html-webpack-plugin": "^3.2.0",
50-
"mocha": "^5.2.0",
51-
"office-addin-debugging": "^2.1.13",
52-
"office-addin-dev-certs": "^1.0.1",
53-
"office-addin-test-helpers": "^0.3.0",
54-
"office-addin-test-server": "^0.3.0",
55-
"office-toolbox": "^0.1.1",
50+
"mocha": "^6.1.4",
51+
"office-addin-debugging": "^2.3.1",
52+
"office-addin-dev-certs": "^1.2.5",
53+
"office-addin-test-helpers": "^0.3.1",
54+
"office-addin-test-server": "^0.3.1",
55+
"office-toolbox": "^0.2.1",
5656
"source-map-loader": "^0.2.4",
57-
"ts-loader": "^6.0.2",
58-
"ts-node": "^8.2.0",
59-
"typescript": "^3.5.1",
60-
"webpack": "^4.33.0",
61-
"webpack-cli": "^3.3.2",
62-
"webpack-dev-server": "^3.5.1"
57+
"ts-loader": "^6.0.4",
58+
"ts-node": "^8.3.0",
59+
"typescript": "^3.5.3",
60+
"webpack": "^4.35.3",
61+
"webpack-cli": "^3.3.6",
62+
"webpack-dev-server": "^3.7.2"
6363
}
6464
}

test/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const devCerts = require("office-addin-dev-certs");
2-
const CleanWebpackPlugin = require("clean-webpack-plugin");
2+
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
33
const CopyWebpackPlugin = require("copy-webpack-plugin");
44
const CustomFunctionsMetadataPlugin = require("custom-functions-metadata-plugin");
55
const HtmlWebpackPlugin = require("html-webpack-plugin");

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const devCerts = require("office-addin-dev-certs");
2-
const CleanWebpackPlugin = require("clean-webpack-plugin");
2+
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
33
const CopyWebpackPlugin = require("copy-webpack-plugin");
44
const CustomFunctionsMetadataPlugin = require("custom-functions-metadata-plugin");
55
const HtmlWebpackPlugin = require("html-webpack-plugin");

0 commit comments

Comments
 (0)