first commit

This commit is contained in:
s2
2024-12-13 08:53:01 +01:00
commit 2746dc9c4e
5477 changed files with 682458 additions and 0 deletions

3
node_modules/minifyfromhtml/example/css/more.css generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#mywidget {
color: blue;
}

View File

@@ -0,0 +1,3 @@
#mywidget {
border: 2px solid blue;
}

3
node_modules/minifyfromhtml/example/css/mywidget.css generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#mywidget {
border: 2px solid red;
}

1
node_modules/minifyfromhtml/example/dist/dist.css generated vendored Normal file
View File

@@ -0,0 +1 @@
#mywidget{border:2px solid red}#mywidget{color:#00f}

2
node_modules/minifyfromhtml/example/dist/dist.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/minifyfromhtml/example/dist/dist.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

24
node_modules/minifyfromhtml/example/dist/index.html generated vendored Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Example</title>
<!-- just the minified stuff -->
<script type="text/javascript" charset="utf-8" src="dist.js"></script>
<link rel="stylesheet" type="text/css" href="dist.css" />
</head>
<body>
<div id="mywidget"></div>
<script>
//widget init
spectacularwidget(document.getElementById('mywidget'));
</script>
</body>
</html>

29
node_modules/minifyfromhtml/example/index.html generated vendored Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Example</title>
<!-- jquery is not used in this example, it's just here to demo the compression -->
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<!-- the widget -->
<script type="text/javascript" charset="utf-8" src="js/spectacularwidget.js"></script>
<!-- some css -->
<link rel="stylesheet" type="text/css" href="css/mywidget.css" />
<link rel="alternate stylesheet" type="text/css" href="css/mywidget.css" />
<link rel="stylesheet" type="text/css" href="css/more.css" />
</head>
<body>
<div id="mywidget"></div>
<script>
//widget init
spectacularwidget(document.getElementById('mywidget'));
</script>
</body>
</html>

10364
node_modules/minifyfromhtml/example/js/jquery.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
var spectacularwidget = function(me) {
me.innerHTML = 'this is so spectacular!';
};
window.spectacularwidget = spectacularwidget;