-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solving #61 node version, #57 Other configure types not available, #50 Add custom arguments to webpack command Commits: * using yarn * packages are updated * upgrading version to 4.0.0 * refactored back to use webpack-cli * using yarn run instead of npm run * documentation is updated * fixing webpack compiler to get webpack compilation result properly
- Loading branch information
Showing
45 changed files
with
13,806 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
next-version: 3.2.2 | ||
next-version: 4.0.0 | ||
assembly-informational-format: '{SemVer}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"name": "wepback-vsts-extension", | ||
"version": "3.2.2", | ||
"version": "4.0.0", | ||
"description": "webpack Visual Studio Team System (VSTS) Extension", | ||
"main": "index.js", | ||
"scripts": { | ||
"setup-sample-one": "cd samples/multiple-webpack-build-steps/webpack-project-one && npm install", | ||
"setup-sample-two": "cd samples/multiple-webpack-build-steps/webpack-project-two && npm install", | ||
"setup-sample-webpack2": "cd samples/webpack-2 && npm install", | ||
"setup-sample-webpack3": "cd samples/webpack-3 && npm install", | ||
"setup-sample-webpack3-with-issues": "cd samples/webpack-3-with-issues && npm install", | ||
"setup-sample-webpack-ts-config": "cd samples/webpack-ts-config && npm install", | ||
"setup-samples": "npm run setup-sample-one && npm run setup-sample-two && npm run setup-sample-webpack2 && npm run setup-sample-webpack3 && npm run setup-sample-webpack3-with-issues && npm run setup-sample-webpack-ts-config", | ||
"setup": "npm run setup-samples && npm install && cd tasks/webpack-build-task && npm install", | ||
"setup-sample-one": "cd samples/multiple-webpack-build-steps/webpack-project-one && yarn", | ||
"setup-sample-two": "cd samples/multiple-webpack-build-steps/webpack-project-two && yarn", | ||
"setup-sample-webpack2": "cd samples/webpack-2 && yarn", | ||
"setup-sample-webpack3": "cd samples/webpack-3 && yarn", | ||
"setup-sample-webpack3-with-issues": "cd samples/webpack-3-with-issues && yarn", | ||
"setup-sample-webpack-ts-config": "cd samples/webpack-ts-config && yarn", | ||
"setup-samples": "yarn run setup-sample-one && yarn run setup-sample-two && yarn run setup-sample-webpack2 && yarn run setup-sample-webpack3 && yarn run setup-sample-webpack3-with-issues && yarn run setup-sample-webpack-ts-config", | ||
"setup": "yarn run setup-samples && yarn && cd tasks/webpack-build-task && yarn", | ||
"tslint": "tslint tasks/webpack-build-task/**/*.ts -e tasks/webpack-build-task/node_modules/**/*", | ||
"build-without-setup": "tsc && npm run tslint", | ||
"build": "npm run setup && npm run build-without-setup", | ||
"build-without-setup": "tsc && yarn run tslint", | ||
"build": "yarn run setup && yarn run build-without-setup", | ||
"update-version": "node updateVersion.js", | ||
"update-version-without-setup": "npm run build-without-setup && npm run update-version", | ||
"release": "npm run build && npm run update-version && node node_modules/tfx-cli/_build/tfx-cli.js extension create --manifest-glob vss-extension.json --output-path ./dist", | ||
"update-version-without-setup": "yarn run build-without-setup && yarn run update-version", | ||
"release": "yarn run build && yarn run update-version && node node_modules/tfx-cli/_build/tfx-cli.js extension create --manifest-glob vss-extension.json --output-path ./dist", | ||
"test-reporter": "cd tasks/webpack-build-task && mocha tests/suite.js --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results.xml", | ||
"test": "npm run build-without-setup && cd tasks/webpack-build-task && mocha tests/suite.js" | ||
"test": "yarn run build-without-setup && cd tasks/webpack-build-task && mocha tests/suite.js" | ||
}, | ||
"author": "Dealogic", | ||
"license": "MIT", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@types/chai": "4.0.1", | ||
"@types/mocha": "2.2.41", | ||
"@types/node": "8.0.6", | ||
"chai": "4.0.2", | ||
"mocha": "3.4.2", | ||
"mocha-junit-reporter": "1.13.0", | ||
"tfx-cli": "0.4.9", | ||
"tslint": "5.4.3", | ||
"typescript": "2.4.1" | ||
"@types/chai": "4.0.10", | ||
"@types/mocha": "2.2.45", | ||
"@types/node": "8.5.2", | ||
"chai": "4.1.2", | ||
"mocha": "4.0.1", | ||
"mocha-junit-reporter": "1.15.0", | ||
"tfx-cli": "0.5.2", | ||
"tslint": "5.8.0", | ||
"typescript": "2.6.2" | ||
} | ||
} |
Oops, something went wrong.