Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tabler-icons

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tabler-icons - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

iconfont/.DS_Store

173

gulpfile.js

@@ -9,2 +9,7 @@ const gulp = require('gulp'),

puppeteer = require('puppeteer'),
outlineStroke = require('svg-outline-stroke'),
iconfont = require('gulp-iconfont'),
template = require('lodash.template'),
sass = require('node-sass'),
cleanCSS = require('clean-css'),
argv = require('minimist')(process.argv.slice(2));

@@ -75,16 +80,25 @@

const printChangelog = function (newIcons, modifiedIcons, renamedIcons) {
const printChangelog = function (newIcons, modifiedIcons, renamedIcons, pretty = false) {
if (newIcons.length > 0) {
let str = '';
str += `${newIcons.length} new icons: `;
if (pretty) {
console.log(`### ${newIcons.length} new icons:`);
newIcons.forEach(function (icon, i) {
str += `\`${icon}\``;
newIcons.forEach(function (icon, i) {
console.log(`- \`${icon}\``);
});
} else {
let str = '';
str += `${newIcons.length} new icons: `;
if ((i + 1) <= newIcons.length - 1) {
str += ', '
}
});
newIcons.forEach(function (icon, i) {
str += `\`${icon}\``;
console.log(str);
if ((i + 1) <= newIcons.length - 1) {
str += ', '
}
});
console.log(str);
}
console.log('');

@@ -118,6 +132,5 @@ }

const generateIconsPreview = function(files, destFile, cb, columnsCount = 17) {
const generateIconsPreview = function (files, destFile, cb, columnsCount = 17, paddingOuter = 5) {
const padding = 29,
paddingOuter = 5,
iconSize = 24;

@@ -168,6 +181,126 @@

gulp.task('iconfont-prepare', function (cb) {
cp.exec('mkdir -p icons-outlined/ && rm -fd ./icons-outlined/* && mkdir -p && rm -fd ./iconfont/*', function () {
cb();
});
});
gulp.task('iconfont-clean', function (cb) {
cp.exec('rm -rf ./icons-outlined', function () {
cb();
});
});
gulp.task('iconfont-svg-outline', function (cb) {
cp.exec('mkdir -p icons-outlined/ && rm -fd ./icons-outlined/*', async () => {
let files = glob.sync("./icons/*.svg");
let iconfontUnicode = {};
if(fs.existsSync('./iconfont-unicode.json')) {
iconfontUnicode = require('./iconfont-unicode');
}
await asyncForEach(files, async function (file) {
const name = path.basename(file, '.svg'),
unicode = iconfontUnicode[name];
await console.log('Stroke for:', file, unicode);
let strokedSVG = fs.readFileSync(file).toString();
strokedSVG = strokedSVG
.replace('width="24"', 'width="1000"')
.replace('height="24"', 'height="1000"');
await outlineStroke(strokedSVG, {
optCurve: false,
steps: 4,
round: 0,
centerHorizontally: true,
fixedWidth: true,
color: 'black'
}).then(outlined => {
if(unicode) {
fs.writeFileSync(`icons-outlined/u${unicode.toUpperCase()}-${name}.svg`, outlined);
} else {
fs.writeFileSync(`icons-outlined/${name}.svg`, outlined);
}
}).catch(error => console.log(error));
});
cb();
});
});
gulp.task('iconfont', function () {
let maxUnicode = 59905;
if(fs.existsSync('./iconfont-unicode.json')) {
const iconfontUnicode = require('./iconfont-unicode');
for(const name in iconfontUnicode) {
const unicode = parseInt(iconfontUnicode[name], 16);
maxUnicode = Math.max(maxUnicode, unicode);
}
}
return gulp.src(['icons-outlined/*.svg'])
.pipe(iconfont({
fontName: 'tabler-icons',
prependUnicode: true,
formats: ['ttf', 'eot', 'woff', 'woff2'],
normalize: true,
startUnicode: maxUnicode
}))
.on('glyphs', function (glyphs, options) {
//glyphs json
let glyphsObject = {};
glyphs.forEach(function (glyph) {
glyphsObject[glyph.name] = glyph.unicode[0].codePointAt(0).toString(16);
});
fs.writeFileSync(`iconfont-unicode.json`, JSON.stringify(glyphsObject));
//css
options['glyphs'] = glyphs;
options['v'] = p.version;
const compiled = template(fs.readFileSync('.build/iconfont.scss').toString());
const result = compiled(options);
fs.writeFileSync('iconfont/tabler-icons.scss', result);
//html
const compiledHtml = template(fs.readFileSync('.build/iconfont.html').toString());
const resultHtml = compiledHtml(options);
fs.writeFileSync('iconfont/tabler-icons.html', resultHtml);
})
.pipe(gulp.dest('iconfont/fonts'));
});
gulp.task('iconfont-css', function (cb) {
sass.render({
file: 'iconfont/tabler-icons.scss',
outputStyle: 'expanded'
}, function (err, result) {
fs.writeFileSync('iconfont/tabler-icons.css', result.css);
const cleanOutput = new cleanCSS({}).minify(result.css);
fs.writeFileSync('iconfont/tabler-icons.min.css', cleanOutput.styles);
cb();
});
});
gulp.task('build-iconfont', gulp.series('iconfont-prepare', 'iconfont-svg-outline', 'iconfont', 'iconfont-css', 'iconfont-clean'));
gulp.task('build-zip', function () {
const version = p.version;
return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}')
return gulp.src('{icons/**/*,icons-png/**/*,iconfont/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}')
.pipe(zip(`tabler-icons-${version}.zip`))

@@ -318,3 +451,3 @@ .pipe(gulp.dest('packages'))

if(version) {
if (version) {
cp.exec(`git diff ${version} HEAD --name-status`, function (err, ret) {

@@ -340,3 +473,3 @@

printChangelog(newIcons, modifiedIcons, renamedIcons);
printChangelog(newIcons, modifiedIcons, renamedIcons, true);

@@ -352,3 +485,3 @@ cb();

if(version) {
if (version) {
cp.exec(`git diff v${version} HEAD --name-status`, function (err, ret) {

@@ -362,8 +495,8 @@

newIcons = newIcons.map(function(icon){
newIcons = newIcons.map(function (icon) {
return `./icons/${icon}.svg`;
});
if(newIcons.length > 0) {
generateIconsPreview(newIcons, `packages/tabler-icons-${newVersion}.svg`, cb, 6);
if (newIcons.length > 0) {
generateIconsPreview(newIcons, `.github/tabler-icons-${newVersion}.svg`, cb, 6, 24);
} else {

@@ -393,2 +526,2 @@ cb();

gulp.task('build', gulp.series('optimize', 'build-jekyll', 'build-copy', 'icons-sprite', 'icons-preview', 'svg-to-png', 'changelog-image', 'build-zip'));
gulp.task('build', gulp.series('optimize', 'build-jekyll', 'build-copy', 'icons-sprite', 'icons-preview', 'svg-to-png', /*'build-iconfont', */ 'changelog-image', 'build-zip'));
{
"name": "tabler-icons",
"version": "1.1.0",
"version": "1.2.0",
"repository": {

@@ -20,2 +20,3 @@ "type": "git",

"icons-png/*",
"iconfont/*",
"tabler-sprite.svg",

@@ -28,2 +29,3 @@ "tabler-sprite-nostroke.svg"

"start": "bundle exec jekyll serve --watch --livereload",
"optimize": "gulp optimize",
"release": "release-it"

@@ -33,8 +35,11 @@ },

"devDependencies": {
"clean-css": "4.2.3",
"glob": "7.1.6",
"gulp": "4.0.2",
"gulp-iconfont": "10.0.3",
"gulp-zip": "5.0.1",
"minimist": "1.2.5",
"puppeteer": "2.1.1",
"release-it": "13.1.2"
"release-it": "13.1.2",
"svg-outline-stroke": "1.2.4"
},

@@ -55,3 +60,7 @@ "release-it": {

}
},
"dependencies": {
"lodash.template": "^4.5.0",
"node-sass": "^4.13.1"
}
}

4

README.md
# Tabler Icons
A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a `2px` stroke.
A set of over 350 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a `2px` stroke.
**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate me on PayPal](https://paypal.me/codecalm) :)**
**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)**

@@ -7,0 +7,0 @@ ## Preview

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc