quackage 1.0.60 → 1.0.61
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.
|
@@ -90,6 +90,15 @@ libGulp.task('minified',
|
|
|
90
90
|
debug: true
|
|
91
91
|
});
|
|
92
92
|
|
|
93
|
+
// Ignore modules that should not be bundled (e.g. WASM loaders loaded via <script> tag)
|
|
94
|
+
if (Array.isArray(_CONFIG.BrowserifyIgnore))
|
|
95
|
+
{
|
|
96
|
+
for (var i = 0; i < _CONFIG.BrowserifyIgnore.length; i++)
|
|
97
|
+
{
|
|
98
|
+
tmpBrowserify.ignore(_CONFIG.BrowserifyIgnore[i]);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
93
102
|
return tmpBrowserify.bundle()
|
|
94
103
|
.pipe(libVinylSourceStream(_CONFIG.LibraryMinifiedFileName))
|
|
95
104
|
.pipe(libVinylBuffer())
|
|
@@ -113,6 +122,15 @@ libGulp.task('debug',
|
|
|
113
122
|
debug: true
|
|
114
123
|
});
|
|
115
124
|
|
|
125
|
+
// Ignore modules that should not be bundled (e.g. WASM loaders loaded via <script> tag)
|
|
126
|
+
if (Array.isArray(_CONFIG.BrowserifyIgnore))
|
|
127
|
+
{
|
|
128
|
+
for (var i = 0; i < _CONFIG.BrowserifyIgnore.length; i++)
|
|
129
|
+
{
|
|
130
|
+
tmpBrowserify.ignore(_CONFIG.BrowserifyIgnore[i]);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
116
134
|
return tmpBrowserify.bundle()
|
|
117
135
|
.pipe(libVinylSourceStream(_CONFIG.LibraryUniminifiedFileName))
|
|
118
136
|
.pipe(libVinylBuffer())
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quackage",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.61",
|
|
4
4
|
"description": "Building. Testing. Quacking. Reloading.",
|
|
5
5
|
"main": "source/Quackage-CLIProgram.js",
|
|
6
6
|
"scripts": {
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://github.com/stevenvelozo/quackage",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@babel/core": "^7.
|
|
54
|
-
"@babel/preset-env": "^7.
|
|
55
|
-
"browserify": "^17.0.
|
|
53
|
+
"@babel/core": "^7.29.0",
|
|
54
|
+
"@babel/preset-env": "^7.29.0",
|
|
55
|
+
"browserify": "^17.0.1",
|
|
56
56
|
"chai": "4.3.10",
|
|
57
57
|
"copy-files-from-to": "^3.11.0",
|
|
58
58
|
"gulp": "^4.0.2",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"mocha": "10.4.0",
|
|
66
66
|
"npm-check-updates": "^18.0.1",
|
|
67
67
|
"nyc": "^15.1.0",
|
|
68
|
-
"pict-docuserve": "^0.0.
|
|
68
|
+
"pict-docuserve": "^0.0.32",
|
|
69
69
|
"pict-service-commandlineutility": "^1.0.19",
|
|
70
70
|
"retold-harness": "^1.1.2",
|
|
71
71
|
"vinyl-buffer": "^1.0.1",
|
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
"LibraryObjectName": "{~PascalCaseIdentifier:AppData.Package.name~}",
|
|
7
7
|
"LibraryOutputFolder": "{~Data:AppData.CWD~}/dist/",
|
|
8
8
|
"LibraryUniminifiedFileName": "{~Data:AppData.Package.name~}.{~Data:Record.BuildFileLabel~}js",
|
|
9
|
-
"LibraryMinifiedFileName": "{~Data:AppData.Package.name~}.{~Data:Record.BuildFileLabel~}min.js"
|
|
9
|
+
"LibraryMinifiedFileName": "{~Data:AppData.Package.name~}.{~Data:Record.BuildFileLabel~}min.js",
|
|
10
|
+
"BrowserifyIgnore": []
|
|
10
11
|
},
|
|
11
12
|
"WatchSettings": {
|
|
12
13
|
"MonitorFolders": ["./html", "./css", "./assets"],
|