@lordicon/web 1.1.0 → 1.2.0
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/.claude/settings.local.json +14 -0
- package/package.json +1 -1
- package/vite.config.ts +8 -2
- /package/dist/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/{src/interfaces.d.ts → interfaces.d.ts} +0 -0
- /package/dist/{src/lottie.d.ts → lottie.d.ts} +0 -0
- /package/dist/{src/parsers.d.ts → parsers.d.ts} +0 -0
- /package/dist/{src/player.d.ts → player.d.ts} +0 -0
- /package/dist/{src/utils.d.ts → utils.d.ts} +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(npm run *)",
|
|
5
|
+
"Bash(node -e ' *)",
|
|
6
|
+
"Bash(echo \"EXIT:$?\")",
|
|
7
|
+
"Bash(npm install *)",
|
|
8
|
+
"Bash(python3 -c ' *)",
|
|
9
|
+
"Bash(npm prune *)",
|
|
10
|
+
"Bash(npm ls *)",
|
|
11
|
+
"Bash(python3 -c \"import json,sys; d=json.load\\(sys.stdin\\); print\\(json.dumps\\(d.get\\('dependencies',{}\\),indent=2\\)\\)\")"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lordicon/web",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A lightweight and flexible player for seamlessly embedding, controlling, and customizing animated Lordicon icons in any web application.",
|
|
5
5
|
"repository": "https://github.com/lordicondev/player-web",
|
|
6
6
|
"homepage": "https://lordicon.com/",
|
package/vite.config.ts
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import { resolve } from 'path';
|
|
1
|
+
import { resolve, sep } from 'path';
|
|
2
2
|
import { defineConfig } from 'vite';
|
|
3
3
|
import dts from 'vite-plugin-dts';
|
|
4
4
|
|
|
5
5
|
export default defineConfig({
|
|
6
6
|
plugins: [
|
|
7
7
|
dts({
|
|
8
|
-
|
|
8
|
+
insertTypesEntry: true,
|
|
9
|
+
beforeWriteFile: (filePath, content) => {
|
|
10
|
+
return {
|
|
11
|
+
filePath: filePath.replace(`${sep}dist${sep}src${sep}`, `${sep}dist${sep}`),
|
|
12
|
+
content,
|
|
13
|
+
};
|
|
14
|
+
},
|
|
9
15
|
}),
|
|
10
16
|
],
|
|
11
17
|
build: {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|