@salla.sa/twilight 1.0.18 → 1.0.19
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/dist/twilight.js +2 -1239
- package/dist/twilight.js.LICENSE.txt +27 -0
- package/package.json +3 -2
- package/watcher.js +2 -2
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Lang.js for Laravel localization in JavaScript.
|
|
3
|
+
*
|
|
4
|
+
* @version 1.1.12
|
|
5
|
+
* @license MIT https://github.com/rmariuzzo/Lang.js/blob/master/LICENSE
|
|
6
|
+
* @site https://github.com/rmariuzzo/Lang.js
|
|
7
|
+
* @author Rubens Mariuzzo <rubens@mariuzzo.com>
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/*!
|
|
11
|
+
* EventEmitter2
|
|
12
|
+
* https://github.com/hij1nx/EventEmitter2
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2013 hij1nx
|
|
15
|
+
* Licensed under the MIT license.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/*!
|
|
19
|
+
* Infinite Scroll v4.0.1
|
|
20
|
+
* Automatically add next page
|
|
21
|
+
*
|
|
22
|
+
* Licensed GPLv3 for open source use
|
|
23
|
+
* or Infinite Scroll Commercial License for commercial use
|
|
24
|
+
*
|
|
25
|
+
* https://infinite-scroll.com
|
|
26
|
+
* Copyright 2018-2020 Metafizzy
|
|
27
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salla.sa/twilight",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Salla Theme Toolkit, Webcomponents, Events, Requests, Utils",
|
|
5
5
|
"main": "dist/twilight.js",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
],
|
|
35
35
|
"homepage": "https://salla.dev",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"
|
|
37
|
+
"@salla.sa/applepay": "~1.0",
|
|
38
|
+
"axios": "^0.23.0",
|
|
38
39
|
"eventemitter2": "^6.4.5",
|
|
39
40
|
"infinite-scroll": "^4.0.1",
|
|
40
41
|
"lang.js": "^1.1.14",
|
package/watcher.js
CHANGED
|
@@ -2,7 +2,7 @@ const path = require('path');
|
|
|
2
2
|
const glob = require("glob");
|
|
3
3
|
const color = {normal: "\x1b[0m", red: "\x1b[31m", green: "\x1b[32m", yellow: "\x1b[33m", cyan: "\x1b[36m",}
|
|
4
4
|
const {execSync} = require("child_process");
|
|
5
|
-
const webpack = require("webpack");
|
|
5
|
+
//const webpack = require("webpack");
|
|
6
6
|
/**
|
|
7
7
|
* @callback HookCallback
|
|
8
8
|
* @param {string} callbackName
|
|
@@ -120,4 +120,4 @@ class WatcherPlugin {
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
module.exports = WatcherPlugin;
|
|
123
|
+
module.exports = WatcherPlugin;
|