Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
296 changes: 163 additions & 133 deletions devicon-base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion devicon.min.css

Large diffs are not rendered by default.

Binary file modified fonts/devicon.eot
Binary file not shown.
250 changes: 130 additions & 120 deletions fonts/devicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fonts/devicon.ttf
Binary file not shown.
Binary file modified fonts/devicon.woff
Binary file not shown.
17 changes: 17 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const footer = require("gulp-footer");
const yargs = require("yargs");
const fsPromise = require("fs").promises;
const path = require("path");
const {execSync} = require("child_process")

// global const
const deviconBaseCSSName = "devicon-base.css"
Expand Down Expand Up @@ -191,6 +192,22 @@ function configOptionCallback(file) {
};
}

/**
* Bump the NPM version of this project.
* This is called via the command line
* using the format "npm run bump -- -v='MAJOR.MINOR.PATCH'"
* @returns a Promise.resolve()
*/
function bumpVersion() {
let newVersion = yargs.argv.v
let command = `npm version v${newVersion} -m "bump npm version to v${newVersion}"`
console.log("Running command: " + command)
let stdout = execSync(command)
console.log("Command ran. Here's the result:\n" + stdout)
return Promise.resolve()
}

exports.updateCss = createDeviconMinCSS;
exports.clean = cleanUp;
exports.optimizeSvg = optimizeSvg;
exports.bumpVersion = bumpVersion
2 changes: 1 addition & 1 deletion icomoon.json

Large diffs are not rendered by default.

40 changes: 1 addition & 39 deletions icons/azure/azure-original-wordmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 1 addition & 38 deletions icons/azure/azure-original.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading