dphelper 0.2.81 → 0.2.84
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/.github/FUNDING.yml +12 -12
- package/.github/dependabot.yml +12 -12
- package/{LICENSE → LICENSE.txt} +9 -1
- package/index.js +1 -1
- package/package.json +6 -6
- package/scripts/.OLD/onBeforeUnLoad.js +120 -0
- package/scripts/.OLD/purge.js +53 -0
- package/scripts/.OLD/string.js +27 -0
- package/typings/.OLD/cordova.d.ts +12 -0
- package/typings/.OLD/layerpro.d.ts +20 -0
- package/typings/.OLD/menupro.d.ts +20 -0
package/.github/FUNDING.yml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# These are supported funding model platforms
|
|
2
|
-
|
|
3
|
-
github: passariello
|
|
4
|
-
patreon: passariello
|
|
5
|
-
open_collective: # Replace with a single Open Collective username
|
|
6
|
-
ko_fi: passariello
|
|
7
|
-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
8
|
-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
|
-
liberapay: passariello
|
|
10
|
-
issuehunt: passariello
|
|
11
|
-
otechie: # Replace with a single Otechie username
|
|
12
|
-
custom: ["https://dario.passariello.ca", "https://www.paypal.me/dariopassariello", "https://www.indiegogo.com/individuals/28513718"]
|
|
1
|
+
# These are supported funding model platforms
|
|
2
|
+
|
|
3
|
+
github: passariello
|
|
4
|
+
patreon: passariello
|
|
5
|
+
open_collective: # Replace with a single Open Collective username
|
|
6
|
+
ko_fi: passariello
|
|
7
|
+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
8
|
+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
|
+
liberapay: passariello
|
|
10
|
+
issuehunt: passariello
|
|
11
|
+
otechie: # Replace with a single Otechie username
|
|
12
|
+
custom: ["https://dario.passariello.ca", "https://www.paypal.me/dariopassariello", "https://www.indiegogo.com/individuals/28513718"]
|
package/.github/dependabot.yml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Basic dependabot.yml file with
|
|
2
|
-
# minimum configuration for two package managers
|
|
3
|
-
|
|
4
|
-
version: 2
|
|
5
|
-
updates:
|
|
6
|
-
# Enable version updates for npm
|
|
7
|
-
- package-ecosystem: "npm"
|
|
8
|
-
# Look for `package.json` and `lock` files in the `root` directory
|
|
9
|
-
directory: "/"
|
|
10
|
-
# Check the npm registry for updates every day (weekdays)
|
|
11
|
-
schedule:
|
|
12
|
-
interval: "daily"
|
|
1
|
+
# Basic dependabot.yml file with
|
|
2
|
+
# minimum configuration for two package managers
|
|
3
|
+
|
|
4
|
+
version: 2
|
|
5
|
+
updates:
|
|
6
|
+
# Enable version updates for npm
|
|
7
|
+
- package-ecosystem: "npm"
|
|
8
|
+
# Look for `package.json` and `lock` files in the `root` directory
|
|
9
|
+
directory: "/"
|
|
10
|
+
# Check the npm registry for updates every day (weekdays)
|
|
11
|
+
schedule:
|
|
12
|
+
interval: "daily"
|
package/{LICENSE → LICENSE.txt}
RENAMED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
dpHelper
|
|
3
|
+
Copyright (c) 2021 Dario Passariello.
|
|
4
|
+
Licensed under the APACHE-2 License, see
|
|
5
|
+
http://dario.passariello.ca
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
Apache License
|
|
2
10
|
Version 2.0, January 2004
|
|
3
11
|
http://www.apache.org/licenses/
|
|
@@ -198,4 +206,4 @@ Apache License
|
|
|
198
206
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
207
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
208
|
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
|
209
|
+
limitations under the License.
|