@dpuse/dpuse-development 0.3.485 → 0.3.487
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/.gitignore_published +6 -3
- package/.gitignore_unpublished +5 -3
- package/dist/dpuse-development.es.js +1275 -1263
- package/dist/dpuse-development.es.js.map +1 -1
- package/package.json +1 -1
package/.gitignore_published
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Common git ignore configuration for PUBLISHED Data Positioning projects.
|
|
2
|
+
.env
|
|
3
|
+
.npmrc # In case this project is published in the future.
|
|
4
|
+
.wrangler
|
|
2
5
|
dependency-check-bin
|
|
6
|
+
dist
|
|
3
7
|
dist-scripts
|
|
4
8
|
node_modules
|
|
5
9
|
rust/*/pkg
|
|
6
10
|
rust/*/target
|
|
7
11
|
rust/target
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
-
**/.DS_Store
|
|
12
|
+
wrangler.jsonc
|
|
13
|
+
**/.DS_Store
|
package/.gitignore_unpublished
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
# Common git ignore configuration for UNPUBLISHED Data Positioning projects.
|
|
2
|
+
.env
|
|
3
|
+
.npmrc # In case this project is published in the future.
|
|
4
|
+
.wrangler
|
|
2
5
|
dependency-check-bin
|
|
3
6
|
dist
|
|
4
7
|
dist-scripts
|
|
@@ -6,6 +9,5 @@ node_modules
|
|
|
6
9
|
rust/*/pkg
|
|
7
10
|
rust/*/target
|
|
8
11
|
rust/target
|
|
9
|
-
.
|
|
10
|
-
|
|
11
|
-
**/.DS_Store
|
|
12
|
+
wrangler.jsonc
|
|
13
|
+
**/.DS_Store
|