tmcsplit 0.0.4 → 0.0.7
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/libtmcsplit +2 -1
- package/package.json +5 -5
- package/tmcsplit +9 -8
- package/tmcsplit.js +1 -1
package/libtmcsplit
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name":
|
|
3
3
|
"tmcsplit",
|
|
4
4
|
"version":
|
|
5
|
-
"0.0.
|
|
5
|
+
"0.0.7",
|
|
6
6
|
"description":
|
|
7
7
|
"Basic Javascript implementation of GNU Split.",
|
|
8
8
|
"funding": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"crash-js":
|
|
76
76
|
"^0.1.76",
|
|
77
77
|
"split-file":
|
|
78
|
-
"npm:@themartiancompany/split-file@2.3.
|
|
78
|
+
"npm:@themartiancompany/split-file@2.3.14"
|
|
79
79
|
},
|
|
80
80
|
"type":
|
|
81
81
|
"commonjs",
|
|
@@ -92,11 +92,11 @@
|
|
|
92
92
|
"build-bin":
|
|
93
93
|
"npx webpack --mode 'production' --config 'webpack.config.cjs' --stats-error-details",
|
|
94
94
|
"build":
|
|
95
|
-
"npm run
|
|
95
|
+
"npm run build-fs-worker && npm run build-lib && npm run build-bin",
|
|
96
96
|
"lint":
|
|
97
97
|
"npx eslint .",
|
|
98
|
-
"publish-
|
|
99
|
-
"npm run build && npm publish --access public",
|
|
98
|
+
"publish-npm":
|
|
99
|
+
"npm lint && npm run build && npm publish --access public",
|
|
100
100
|
"start":
|
|
101
101
|
"npx safely-serve --help # index.html --port 3000 --https --no-cache",
|
|
102
102
|
"test":
|
package/tmcsplit
CHANGED
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
4
4
|
|
|
5
|
-
/**
|
|
5
|
+
/** -----------------------------------------------------------------
|
|
6
6
|
* tmcsplit
|
|
7
|
-
*
|
|
7
|
+
* -----------------------------------------------------------------
|
|
8
8
|
* Copyright ©
|
|
9
9
|
* Pellegrino Prevete
|
|
10
10
|
* 2024, 2025, 2026
|
|
11
11
|
*
|
|
12
12
|
* All rights reserved
|
|
13
|
-
*
|
|
13
|
+
* -----------------------------------------------------------------
|
|
14
14
|
*
|
|
15
|
-
* This program is free software: you can redistribute it and/or
|
|
16
|
-
* it under the terms of the GNU General Public License as
|
|
17
|
-
* the Free Software Foundation, either version 3
|
|
18
|
-
* (at your option) any later version.
|
|
15
|
+
* This program is free software: you can redistribute it and/or
|
|
16
|
+
* modify it under the terms of the GNU General Public License as
|
|
17
|
+
* published by the Free Software Foundation, either version 3
|
|
18
|
+
* of the License, or (at your option) any later version.
|
|
19
19
|
*
|
|
20
20
|
* This program is distributed in the hope that it will be useful,
|
|
21
21
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
* GNU General Public License for more details.
|
|
24
24
|
*
|
|
25
25
|
* You should have received a copy of the GNU General Public License
|
|
26
|
-
* along with this program.
|
|
26
|
+
* along with this program.
|
|
27
|
+
* If not, see <https://www.gnu.org/licenses/>.
|
|
27
28
|
*/
|
|
28
29
|
|
|
29
30
|
/* eslint
|