2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-07 15:44:05 +00:00

Publish update for Svelte component

This commit is contained in:
Vjacheslav Trushkin 2022-03-18 10:06:28 +02:00
parent 33b22821d5
commit 57f5a436e0
4 changed files with 5216 additions and 2278 deletions

View File

@ -1,9 +1,12 @@
.DS_Store .DS_Store
.babelrc
rollup.config.js rollup.config.js
tsconfig-base.json
tsconfig.json tsconfig.json
api-extractor*.json api-extractor*.json
build.js build.js
copy.js copy.js
jest.config.js
node_modules node_modules
build build
src src

View File

@ -61,7 +61,7 @@ const fileExists = (file) => {
return true; return true;
}; };
if (compile.dist && !fileExists(packagesDir + '/core/lib/modules.js')) { if (compile.dist && !fileExists(packagesDir + '/core/lib/modules.mjs')) {
compile.core = true; compile.core = true;
} }

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
"name": "@iconify/svelte", "name": "@iconify/svelte",
"description": "Iconify icon component for Svelte.", "description": "Iconify icon component for Svelte.",
"author": "Vjacheslav Trushkin", "author": "Vjacheslav Trushkin",
"version": "2.1.2", "version": "2.2.0",
"license": "MIT", "license": "MIT",
"bugs": "https://github.com/iconify/iconify/issues", "bugs": "https://github.com/iconify/iconify/issues",
"homepage": "https://github.com/iconify/iconify", "homepage": "https://github.com/iconify/iconify",
@ -26,7 +26,7 @@
"test": "jest --runInBand" "test": "jest --runInBand"
}, },
"devDependencies": { "devDependencies": {
"@iconify/core": "^1.2.4", "@iconify/core": "^1.3.0",
"@microsoft/api-extractor": "^7.19.4", "@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0", "@rollup/plugin-typescript": "^8.3.0",
@ -34,12 +34,14 @@
"@testing-library/svelte": "^3.0.3", "@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^3.0.0", "@tsconfig/svelte": "^3.0.0",
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"jest": "^28.0.0-alpha.7",
"jest-environment-jsdom": "^28.0.0-alpha.7",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.0",
"rollup-plugin-svelte": "^7.1.0", "rollup-plugin-svelte": "^7.1.0",
"svelte": "3.39", "svelte": "3.39",
"svelte-jester": "^2.1.5", "svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.2", "svelte-preprocess": "^4.10.4",
"ts-jest": "^27.1.3" "ts-jest": "^27.1.3"
} }
} }