@symbo.ls/default-icons 2.11.470 → 3.0.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 +5 -5
- package/index.js +1 -1
- package/package.json +4 -4
package/dist/cjs/index.js
CHANGED
|
@@ -280,12 +280,12 @@ var require_plus = __commonJS({
|
|
|
280
280
|
});
|
|
281
281
|
|
|
282
282
|
// index.js
|
|
283
|
-
var
|
|
284
|
-
__export(
|
|
285
|
-
|
|
283
|
+
var index_exports = {};
|
|
284
|
+
__export(index_exports, {
|
|
285
|
+
DEFAULT_ICONS: () => DEFAULT_ICONS
|
|
286
286
|
});
|
|
287
|
-
module.exports = __toCommonJS(
|
|
288
|
-
var
|
|
287
|
+
module.exports = __toCommonJS(index_exports);
|
|
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": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "symbo.ls",
|
|
6
6
|
"license": "ISC",
|
|
7
|
-
"gitHead": "
|
|
7
|
+
"gitHead": "a4e7f586f7e4f60bd7b6a8388bdacc3ae1879433",
|
|
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
|
}
|