gleap 14.8.1 → 14.8.3
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/.assetsignore +30 -0
- package/build/browser/index.js +1 -1
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/esm/index.mjs +1 -1
- package/build/esm/index.mjs.map +1 -1
- package/package.json +6 -3
- package/wrangler.jsonc +16 -0
package/.assetsignore
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Node.js
|
|
2
|
+
**/node_modules
|
|
3
|
+
**/.npm
|
|
4
|
+
**/package-lock.json
|
|
5
|
+
|
|
6
|
+
# Build artifacts and source
|
|
7
|
+
src/
|
|
8
|
+
scripts/
|
|
9
|
+
webpack.config.js
|
|
10
|
+
babel.config.js
|
|
11
|
+
|
|
12
|
+
# Git and version control
|
|
13
|
+
**/.git
|
|
14
|
+
**/.gitignore
|
|
15
|
+
|
|
16
|
+
# OS files
|
|
17
|
+
**/.DS_Store
|
|
18
|
+
**/Thumbs.db
|
|
19
|
+
|
|
20
|
+
# Development and configuration files
|
|
21
|
+
**/.env*
|
|
22
|
+
**/wrangler.jsonc
|
|
23
|
+
**/.assetsignore
|
|
24
|
+
|
|
25
|
+
# Test files
|
|
26
|
+
**/*.test.js
|
|
27
|
+
**/*.spec.js
|
|
28
|
+
|
|
29
|
+
# Documentation (excluding demo files)
|
|
30
|
+
README.md
|