easy-soft-utility 2.4.9 → 2.4.12
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/License.txt +21 -0
- package/es/utils/constants.d.ts +1 -1
- package/package.json +7 -5
package/License.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 luzhitao
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above footerDescription notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/es/utils/constants.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export namespace notificationTypeCollection {
|
|
|
131
131
|
}
|
|
132
132
|
export namespace messageTypeCollection { }
|
|
133
133
|
/**
|
|
134
|
-
* A
|
|
134
|
+
* A Simple Transparent Image
|
|
135
135
|
*/
|
|
136
136
|
export const transparentImage: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABLCAYAAACGGCK3AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA0SURBVHhe7cExAQAAAMKg9U9tDQ8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA3NXV7AAHfw7zWAAAAAElFTkSuQmCC";
|
|
137
137
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-soft-utility",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "easy-soft-utility",
|
|
6
6
|
"keywords": [
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"es"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
|
-
"build": "rimraf ./es && rollup --config rollup.config.compression.js --bundleConfigAsCjs",
|
|
27
|
+
"build": "npx rimraf ./es && rollup --config rollup.config.compression.js --bundleConfigAsCjs",
|
|
28
28
|
"postbuild": "npm run tsc:build",
|
|
29
|
-
"build:skipCompression": "rimraf ./es && rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs",
|
|
29
|
+
"build:skipCompression": "npx rimraf ./es && rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs",
|
|
30
30
|
"postbuild:skipCompression": "npm run tsc:build",
|
|
31
|
-
"clean-file": "rimraf ./node_modules",
|
|
31
|
+
"clean-file": "npx rimraf ./node_modules",
|
|
32
32
|
"dev": "rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs --watch --watch.onBundleEnd=\"npm run tsc:build\"",
|
|
33
33
|
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
|
|
34
34
|
"lint-staged": "lint-staged",
|
|
@@ -110,6 +110,7 @@
|
|
|
110
110
|
"prettier-plugin-packagejson": "^2",
|
|
111
111
|
"qs": "^6.11.0",
|
|
112
112
|
"react-refresh": "^0.14.0",
|
|
113
|
+
"rimraf": "^4.1.2",
|
|
113
114
|
"rollup": "^3.12.0",
|
|
114
115
|
"rollup-plugin-livereload": "^2.0.5",
|
|
115
116
|
"rollup-plugin-postcss": "^4.0.2",
|
|
@@ -122,5 +123,6 @@
|
|
|
122
123
|
"stylelint-config-standard": "^29.0.0",
|
|
123
124
|
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
|
|
124
125
|
"webpack": "^5.75.0"
|
|
125
|
-
}
|
|
126
|
+
},
|
|
127
|
+
"gitHead": "3a41046e502c3727c8f289cc64d9032e5251b095"
|
|
126
128
|
}
|