@symbo.ls/default-icons 2.11.470 → 2.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -2
- package/index.js +1 -1
- package/package.json +4 -4
package/dist/cjs/index.js
CHANGED
|
@@ -282,10 +282,10 @@ var require_plus = __commonJS({
|
|
|
282
282
|
// index.js
|
|
283
283
|
var default_exports = {};
|
|
284
284
|
__export(default_exports, {
|
|
285
|
-
|
|
285
|
+
DEFAULT_ICONS: () => DEFAULT_ICONS
|
|
286
286
|
});
|
|
287
287
|
module.exports = __toCommonJS(default_exports);
|
|
288
|
-
var
|
|
288
|
+
var DEFAULT_ICONS = {
|
|
289
289
|
symbols: require_logo(),
|
|
290
290
|
logo: require_logo(),
|
|
291
291
|
arrowDownCircle: require_arrow_down_circle(),
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/default-icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "symbo.ls",
|
|
6
6
|
"license": "ISC",
|
|
7
|
-
"gitHead": "
|
|
7
|
+
"gitHead": "f4de780d7f974a235640526d303a3f3dc68ac1b4",
|
|
8
8
|
"files": [
|
|
9
9
|
"src",
|
|
10
10
|
"dist"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"copy:package:cjs": "cp ../../../build/package-cjs.json dist/cjs/package.json",
|
|
22
22
|
"build:esm": "npx esbuild index.js --target=es2017 --format=esm --outdir=dist/esm --bundle --loader:.svg=text",
|
|
23
23
|
"build:cjs": "npx esbuild index.js --target=node16 --format=cjs --outdir=dist/cjs --bundle --loader:.svg=text",
|
|
24
|
-
"build": "
|
|
25
|
-
"prepublish": "rimraf -I dist &&
|
|
24
|
+
"build": "npm run build:cjs",
|
|
25
|
+
"prepublish": "rimraf -I dist && npm run build && npm run copy:package:cjs"
|
|
26
26
|
}
|
|
27
27
|
}
|