mirror of
https://github.com/iconify/iconify.git
synced 2025-02-14 09:30:21 +00:00
Update dependencies for core, remove debug code that was added by mistake, publish new version
This commit is contained in:
parent
8731ac00c3
commit
c9cfa55bb4
1494
packages/core/package-lock.json
generated
1494
packages/core/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
||||
"name": "@iconify/core",
|
||||
"description": "Reusable files used by multiple Iconify packages",
|
||||
"author": "Vjacheslav Trushkin <cyberalien@gmail.com> (https://iconify.design)",
|
||||
"version": "1.0.0-beta.4",
|
||||
"version": "1.0.0-beta.5",
|
||||
"license": "(Apache-2.0 OR GPL-2.0)",
|
||||
"bugs": "https://github.com/iconify/iconify/issues",
|
||||
"homepage": "https://iconify.design/",
|
||||
@ -23,15 +23,15 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chai": "^4.2.12",
|
||||
"@types/mocha": "^5.2.7",
|
||||
"@types/node": "^12.12.54",
|
||||
"@types/mocha": "^8.0.3",
|
||||
"@types/node": "^14.6.0",
|
||||
"@types/request": "^2.48.5",
|
||||
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
||||
"@typescript-eslint/parser": "^2.34.0",
|
||||
"@typescript-eslint/eslint-plugin": "^3.10.1",
|
||||
"@typescript-eslint/parser": "^3.10.1",
|
||||
"chai": "^4.2.0",
|
||||
"eslint": "^6.8.0",
|
||||
"mocha": "^6.2.3",
|
||||
"typescript": "^3.9.7"
|
||||
"eslint": "^7.7.0",
|
||||
"mocha": "^8.1.2",
|
||||
"typescript": "^4.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@cyberalien/redundancy": "^1.0.0",
|
||||
|
@ -232,7 +232,6 @@ export function listIcons(provider?: string, prefix?: string): string[] {
|
||||
} else {
|
||||
providers = Object.keys(storage);
|
||||
}
|
||||
console.log('Listing icons for providers:', providers);
|
||||
|
||||
// Get all icons
|
||||
providers.forEach((provider) => {
|
||||
@ -246,7 +245,6 @@ export function listIcons(provider?: string, prefix?: string): string[] {
|
||||
? []
|
||||
: Object.keys(storage[provider]);
|
||||
}
|
||||
console.log('Listing icons for prefixes:', prefixes);
|
||||
|
||||
prefixes.forEach((prefix) => {
|
||||
const storage = getStorage(provider, prefix);
|
||||
@ -257,7 +255,6 @@ export function listIcons(provider?: string, prefix?: string): string[] {
|
||||
':' +
|
||||
name
|
||||
);
|
||||
console.log('Found some icons:', icons);
|
||||
allIcons = allIcons.concat(icons);
|
||||
});
|
||||
});
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* eslint-disable @typescript-eslint/ban-ts-ignore */
|
||||
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
||||
import 'mocha';
|
||||
import { expect } from 'chai';
|
||||
import {
|
||||
|
@ -1,6 +1,5 @@
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars-experimental */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
/* eslint-disable @typescript-eslint/camelcase */
|
||||
import 'mocha';
|
||||
import { expect } from 'chai';
|
||||
import {
|
||||
|
Loading…
x
Reference in New Issue
Block a user