Skip to content

Commit

Permalink
chore(lib+deps): update dependencies and mark side effects
Browse files Browse the repository at this point in the history
  • Loading branch information
rektdeckard committed Jan 24, 2024
1 parent f8ec678 commit 79a0d9c
Show file tree
Hide file tree
Showing 1,255 changed files with 30,124 additions and 50,159 deletions.
2 changes: 1 addition & 1 deletion core
30 changes: 19 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
{
"name": "@phosphor-icons/webcomponents",
"version": "2.0.6",
"version": "2.0.7",
"description": "A flexible icon family for the web",
"author": "rektdeckard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phosphor-icons/webcomponents.git"
},
"main": "dist/index.es.js",
"browser": "dist/index.es.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.es.js",
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"module": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.es.js"
"./*": {
"import": "./dist/icons/*.mjs",
"types": "./dist/icons/*.d.ts"
},
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"private": false,
"sideEffects": false,
"sideEffects": true,
"scripts": {
"assemble": "tsx scripts/assemble.ts",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,vue}\" \"./scripts/*.ts\" \"./index.html\"",
Expand All @@ -34,9 +42,9 @@
"devDependencies": {
"@types/node": "18",
"chalk": "^4.1.0",
"prettier": "^2.8.4",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^4.9.5",
"vite": "^4.1.4"
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}
Loading

0 comments on commit 79a0d9c

Please sign in to comment.