Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c69effea8 | |||
| 9836dcdf7a | |||
| d7b066c7c7 |
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es2021": true
|
||||
},
|
||||
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:prettier/recommended"],
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 12,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"plugins": ["react"],
|
||||
"rules": {
|
||||
"prettier/prettier": "error",
|
||||
"react/prop-types": "off"
|
||||
},
|
||||
"settings": {
|
||||
"react": {
|
||||
"version": "detect"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es2021": true
|
||||
},
|
||||
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:prettier/recommended"],
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 12,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"plugins": ["react"],
|
||||
"rules": {
|
||||
"prettier/prettier": "error",
|
||||
"react/prop-types": "off"
|
||||
},
|
||||
"settings": {
|
||||
"react": {
|
||||
"version": "detect"
|
||||
}
|
||||
}
|
||||
}
|
||||
34
.gitignore
vendored
34
.gitignore
vendored
@@ -1,24 +1,14 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
# ---> VisualStudioCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
!.vscode/*.code-snippets
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "all",
|
||||
"tabWidth": 2
|
||||
}
|
||||
83
Album.html
Normal file
83
Album.html
Normal file
@@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СладкийАльбом</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="index.html" class="button">Главная</a></li>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<h2>Ваши Альбомы</h2>
|
||||
<div class="photo-container">
|
||||
<div class="photo-item">
|
||||
<img src="src/Album.png" alt="Фото 1">
|
||||
<p class="photo-title">Избранное</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/Album1.png" alt="Фото 2">
|
||||
<p class="photo-title">Видео</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/Album2.png" alt="Фото 3">
|
||||
<p class="photo-title">Камера</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
83
Basket.html
Normal file
83
Basket.html
Normal file
@@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СладкаяКорзинка</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="index.html" class="button">Главная</a></li>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<h2>Корзина</h2>
|
||||
<div class="photo-container">
|
||||
<div class="photo-item">
|
||||
<img src="src/Cart2.png" alt="Фото 1">
|
||||
<p class="photo-title">Удаленный файл 1</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/Cart1.png" alt="Фото 2">
|
||||
<p class="photo-title">Удаленный файл 2</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/Cart.png" alt="Фото 3">
|
||||
<p class="photo-title">Удаленный файл 3</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
87
File.html
Normal file
87
File.html
Normal file
@@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Сладкие Файлы</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="index.html" class="button">Главная</a></li>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<h2>Ваши Файлы</h2>
|
||||
<div class="photo-container">
|
||||
<div class="photo-item">
|
||||
<img src="src/File.png" alt="Фото 1">
|
||||
<p class="photo-title">photo.png</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/File2.png" alt="Фото 2">
|
||||
<p class="photo-title">Отп зачет.docx</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/File3.png" alt="Фото 3">
|
||||
<p class="photo-title">Яндекс Музыка.exe</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/pass.png" alt="Фото 4">
|
||||
<p class="photo-title">sweety.png</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
78
Password.html
Normal file
78
Password.html
Normal file
@@ -0,0 +1,78 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СладкаяРегистрация</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="index.html" class="button">Главная</a></li>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<h2>Вход на СладкийДиск</h2>
|
||||
<div class="photo-container">
|
||||
<div class="photo-item">
|
||||
<form class="login-form">
|
||||
<input type="text" placeholder="Логин" required>
|
||||
<input type="password" placeholder="Пароль" required>
|
||||
<a href="index.html" class="dropdown-button">Войти</a>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
87
Photo.html
Normal file
87
Photo.html
Normal file
@@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СладкоеФото</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="index.html" class="button">Главная</a></li>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<h2>Ваши Фото</h2>
|
||||
<div class="photo-container">
|
||||
<div class="photo-item">
|
||||
<img src="src/con23.png" alt="Фото 1">
|
||||
<p class="photo-title">Фото 1</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/cono.png" alt="Фото 2">
|
||||
<p class="photo-title">Фото 2</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/pass.png" alt="Фото 3">
|
||||
<p class="photo-title">Фото 3</p>
|
||||
</div>
|
||||
<div class="photo-item">
|
||||
<img src="src/photo.png" alt="Фото 4">
|
||||
<p class="photo-title">Фото 4</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
626
css/Style.css
Normal file
626
css/Style.css
Normal file
@@ -0,0 +1,626 @@
|
||||
/* Общие стили */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #808080;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Контейнер страницы */
|
||||
.page {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Шапка */
|
||||
.site-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px 20px;
|
||||
background-color: #b2d6ff;
|
||||
box-shadow: 0 2px 6px rgba(223, 49, 167, 0.699);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 8px;
|
||||
margin-right: 15px;
|
||||
border: 2px solid #ff0088;
|
||||
}
|
||||
|
||||
.site-title {
|
||||
font-size: 24px;
|
||||
color: #ff0088;
|
||||
text-shadow: 0 0 4px #ee80ee;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.navbar ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.navbar ul li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: block;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
background-color: #ff0088;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
transition: background-color 0.3s ease;
|
||||
font-size: 14px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #ee80ee;
|
||||
}
|
||||
|
||||
/* Контейнер для кнопки меню и выпадающего меню */
|
||||
.menu-container {
|
||||
position: relative; /* Для привязки выпадающего меню */
|
||||
}
|
||||
|
||||
/* Кнопка меню */
|
||||
.menu-button {
|
||||
padding: 10px 20px;
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: background-color 0.3s ease;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.menu-button:hover {
|
||||
background-color: #45a049;
|
||||
}
|
||||
|
||||
/* Выпадающее меню */
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 100%; /* Расположение под кнопкой */
|
||||
left: 0; /* Выравнивание по левому краю кнопки */
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
z-index: 1000;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.dropdown-content.show {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.dropdown-button {
|
||||
padding: 10px 20px;
|
||||
background-color: #ff0088;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.dropdown-button:hover {
|
||||
background-color: #ee80ee;
|
||||
}
|
||||
|
||||
/* Основное содержимое */
|
||||
.site-content {
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.text-block {
|
||||
text-align: center;
|
||||
padding: 30px;
|
||||
background-color: #fff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 8px rgba(223, 49, 167, 0.3);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.text-block h2 {
|
||||
color: #ee80ee;
|
||||
font-size: 48px;
|
||||
margin-bottom: 12px;
|
||||
text-shadow: 0 0 4px #ff0088;
|
||||
}
|
||||
|
||||
.text-block p {
|
||||
color: #ff0088;
|
||||
font-size: 32px;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.new-table-container {
|
||||
margin-top: 40px;
|
||||
width: 100%;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
.new-table-container table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
box-shadow: 0 4px 8px rgba(223, 49, 167, 0.3);
|
||||
}
|
||||
|
||||
.new-table-container th,
|
||||
.new-table-container td {
|
||||
padding: 16px;
|
||||
border: 1px solid #ddd;
|
||||
text-align: center;
|
||||
color: #000;
|
||||
background-color: #ff80bf;
|
||||
}
|
||||
|
||||
.new-table-container th {
|
||||
background-color: #ff0088;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.photo-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
padding: 20px 40px;
|
||||
margin: 20px auto;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.photo-item {
|
||||
flex-grow: 1;
|
||||
flex-basis: 30%;
|
||||
box-sizing: border-box;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.photo-item img {
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
object-fit: cover;
|
||||
border-radius: 8px;
|
||||
border: 2px solid #ff0088;
|
||||
}
|
||||
|
||||
.photo-title {
|
||||
margin: 10px 0;
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* Подвал */
|
||||
.site-footer {
|
||||
padding: 20px 40px;
|
||||
background-color: #333;
|
||||
color: white;
|
||||
flex-shrink: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid #555;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.contact-info h4 {
|
||||
margin-bottom: 10px;
|
||||
color: #ee80ee;
|
||||
text-shadow: 0 0 4px #ff0088;
|
||||
}
|
||||
|
||||
.contact-info address {
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.social-icons a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.social-icons a:hover {
|
||||
color: #ee80ee;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ee80ee;
|
||||
}
|
||||
|
||||
small {
|
||||
display: block;
|
||||
text-align: center;
|
||||
margin-top: 15px;
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* Адаптивность */
|
||||
|
||||
/* Мобильные устройства (до 600px) */
|
||||
@media (max-width: 600px) {
|
||||
.site-header {
|
||||
flex-direction: column;
|
||||
padding: 10px;
|
||||
background-color: #d6e9fe;
|
||||
width: 100%;
|
||||
}
|
||||
.logo-container {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.logo {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
.site-title {
|
||||
font-size: 18px;
|
||||
}
|
||||
.navbar {
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.navbar ul {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
padding: 10px 0;
|
||||
}
|
||||
.button {
|
||||
padding: 8px 15px;
|
||||
font-size: 12px;
|
||||
flex: 1;
|
||||
min-width: 80px;
|
||||
text-align: center;
|
||||
}
|
||||
.menu-container {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.menu-button {
|
||||
margin: 10px auto;
|
||||
display: block;
|
||||
}
|
||||
.dropdown-content {
|
||||
position: static;
|
||||
width: 100%;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
.dropdown-content.show {
|
||||
display: flex;
|
||||
}
|
||||
.dropdown-button {
|
||||
font-size: 14px;
|
||||
padding: 8px 15px;
|
||||
}
|
||||
.text-block {
|
||||
padding: 15px;
|
||||
}
|
||||
.text-block h2 {
|
||||
font-size: 28px;
|
||||
}
|
||||
.text-block p {
|
||||
font-size: 18px;
|
||||
}
|
||||
.new-table-container {
|
||||
margin-top: 20px;
|
||||
width: 100%;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.new-table-container th,
|
||||
.new-table-container td {
|
||||
padding: 8px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.photo-container {
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
.photo-item {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
.photo-item img {
|
||||
height: 300px;
|
||||
}
|
||||
.photo-title {
|
||||
font-size: 14px;
|
||||
}
|
||||
.site-footer {
|
||||
width: 100%;
|
||||
}
|
||||
.footer-content {
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding: 0 10px;
|
||||
}
|
||||
.contact-info address {
|
||||
font-size: 12px;
|
||||
}
|
||||
.social-icons a {
|
||||
font-size: 14px;
|
||||
}
|
||||
.social-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Планшеты (601px - 1024px) */
|
||||
@media (min-width: 601px) and (max-width: 1024px) {
|
||||
.site-header {
|
||||
padding: 10px;
|
||||
background-color: #f5cf8e;
|
||||
width: 100%;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.logo-container {
|
||||
flex: 1;
|
||||
min-width: 200px;
|
||||
}
|
||||
.logo {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
.site-title {
|
||||
font-size: 20px;
|
||||
}
|
||||
.navbar {
|
||||
flex: 2;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
.navbar ul {
|
||||
gap: 15px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
.button {
|
||||
padding: 8px 15px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.menu-container {
|
||||
margin-left: 10px;
|
||||
}
|
||||
.dropdown-content {
|
||||
top: 100%;
|
||||
left: 0; /* Выравнивание по левому краю кнопки */
|
||||
}
|
||||
.dropdown-button {
|
||||
font-size: 15px;
|
||||
}
|
||||
.text-block {
|
||||
padding: 20px;
|
||||
}
|
||||
.text-block h2 {
|
||||
font-size: 36px;
|
||||
}
|
||||
.text-block p {
|
||||
font-size: 24px;
|
||||
}
|
||||
.new-table-container {
|
||||
margin-top: 30px;
|
||||
width: 100%;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.new-table-container th,
|
||||
.new-table-container td {
|
||||
padding: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.photo-container {
|
||||
gap: 12px;
|
||||
padding: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
.photo-item {
|
||||
flex-basis: 45%;
|
||||
}
|
||||
.photo-item img {
|
||||
height: 250px;
|
||||
}
|
||||
.photo-title {
|
||||
font-size: 15px;
|
||||
}
|
||||
.site-footer {
|
||||
width: 100%;
|
||||
}
|
||||
.footer-content {
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding: 0 15px;
|
||||
}
|
||||
.contact-info address {
|
||||
font-size: 13px;
|
||||
}
|
||||
.social-icons a {
|
||||
font-size: 15px;
|
||||
}
|
||||
.social-icon {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ПК (1025px и больше) */
|
||||
@media (min-width: 1025px) {
|
||||
.site-header {
|
||||
background-color: #b2d6ff;
|
||||
width: 100%;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
.logo-container {
|
||||
flex: 1;
|
||||
}
|
||||
.navbar {
|
||||
flex: 2;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
.navbar ul {
|
||||
gap: 20px;
|
||||
}
|
||||
.button {
|
||||
padding: 10px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.menu-container {
|
||||
margin-left: 20px;
|
||||
}
|
||||
.dropdown-content {
|
||||
top: 100%;
|
||||
left: 0; /* Выравнивание по левому краю кнопки */
|
||||
}
|
||||
.dropdown-button {
|
||||
font-size: 16px;
|
||||
}
|
||||
.text-block h2 {
|
||||
font-size: 48px;
|
||||
}
|
||||
.text-block p {
|
||||
font-size: 32px;
|
||||
}
|
||||
.new-table-container {
|
||||
margin-top: 40px;
|
||||
width: 100%;
|
||||
padding: 0 40px;
|
||||
}
|
||||
.new-table-container th,
|
||||
.new-table-container td {
|
||||
padding: 16px;
|
||||
font-size: 18px;
|
||||
}
|
||||
.photo-container {
|
||||
width: 100%;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
.photo-item {
|
||||
flex-basis: 30%;
|
||||
}
|
||||
.photo-item img {
|
||||
height: 250px;
|
||||
}
|
||||
.photo-title {
|
||||
font-size: 16px;
|
||||
}
|
||||
.site-footer {
|
||||
width: 100%;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
.footer-content {
|
||||
width: 100%;
|
||||
padding: 0 40px;
|
||||
}
|
||||
.social-icon {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
}
|
||||
.login-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.login-form input {
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.login-form input:focus {
|
||||
border-color: #ff0088;
|
||||
}
|
||||
62
css/StylePass.css
Normal file
62
css/StylePass.css
Normal file
@@ -0,0 +1,62 @@
|
||||
/* Общие стили */
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial, sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Окно входа */
|
||||
.login-container {
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
padding: 30px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 20px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* Форма */
|
||||
.login-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
input {
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
border-color: #ff0088;
|
||||
}
|
||||
|
||||
/* Кнопка */
|
||||
.login-button {
|
||||
padding: 10px;
|
||||
background-color: #ff0088;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.login-button:hover {
|
||||
background-color: #e60073;
|
||||
}
|
||||
@@ -1,326 +0,0 @@
|
||||
{
|
||||
"users": [
|
||||
{
|
||||
"id": "1747470047267",
|
||||
"email": "test@example.com",
|
||||
"password": "pass",
|
||||
"subscription": "caramel"
|
||||
},
|
||||
{
|
||||
"id": "1747470900104",
|
||||
"email": "eredavkin@yandex.ru",
|
||||
"password": "Roma2005",
|
||||
"subscription": "caramel"
|
||||
},
|
||||
{
|
||||
"id": "1747560598612",
|
||||
"email": "eredavkin123@yandex.ru",
|
||||
"password": "Roma2005",
|
||||
"subscription": null
|
||||
}
|
||||
],
|
||||
"subscriptions": [
|
||||
{
|
||||
"id": "candy",
|
||||
"name": "Конфетка",
|
||||
"price": "100 ₽/мес"
|
||||
},
|
||||
{
|
||||
"id": "caramel",
|
||||
"name": "Карамелька",
|
||||
"price": "500 ₽/мес"
|
||||
},
|
||||
{
|
||||
"id": "chocolate",
|
||||
"name": "Шоколадка",
|
||||
"price": "1500 ₽/мес"
|
||||
}
|
||||
],
|
||||
"albums": [
|
||||
{
|
||||
"id": "1",
|
||||
"title": "Мой отпуск",
|
||||
"description": "Фото с моря",
|
||||
"categoryId": "1",
|
||||
"thumbnailUrl": "https://picsum.photos/150",
|
||||
"createdAt": "2025-05-16T12:00:00Z",
|
||||
"userId": "1747470047267"
|
||||
},
|
||||
{
|
||||
"id": "f425",
|
||||
"description": "тестовый альбом",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"№1"
|
||||
],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:39:47.956Z",
|
||||
"title": "Это тестовый альбом",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/981d762b-6fd7-475d-9e35-6314e1f652d0"
|
||||
}
|
||||
],
|
||||
"photos": [
|
||||
{
|
||||
"id": "1",
|
||||
"title": "Закат",
|
||||
"description": "Красивый закат на пляже",
|
||||
"categoryId": "1",
|
||||
"photoTypeId": "2",
|
||||
"resolution": "1920x1080",
|
||||
"size": 500,
|
||||
"tags": [
|
||||
"закат",
|
||||
"пляж"
|
||||
],
|
||||
"createdAt": "2025-05-16T12:00:00Z",
|
||||
"userId": "1747470047267",
|
||||
"albumId": "1",
|
||||
"url": "https://picsum.photos/600",
|
||||
"thumbnailUrl": "https://picsum.photos/150",
|
||||
"isLocal": true
|
||||
},
|
||||
{
|
||||
"id": "97d2",
|
||||
"description": "Это Анапа а могло быть Сочи",
|
||||
"categoryId": "2",
|
||||
"tags": [
|
||||
"#Логика"
|
||||
],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:30:59.534Z",
|
||||
"title": "anapa",
|
||||
"photoTypeId": "1",
|
||||
"resolution": "1920x1080",
|
||||
"size": 262,
|
||||
"isLocal": true,
|
||||
"url": "blob:http://localhost:5173/160016fb-24f5-4bfb-afca-31195c370bee",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/14156199-9a41-4fea-924f-860c3d906d4c"
|
||||
},
|
||||
{
|
||||
"id": "02e1",
|
||||
"title": "m3U0bJ9dnQE",
|
||||
"description": "",
|
||||
"categoryId": "1",
|
||||
"photoTypeId": "2",
|
||||
"resolution": "1920x1080",
|
||||
"size": 99,
|
||||
"tags": [],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:40:22.002Z",
|
||||
"albumId": "f425",
|
||||
"url": "blob:http://localhost:5173/a72436fb-84a2-4255-9a41-352c742d3dd0",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/3d516d85-ac9b-4056-821b-974a21b0b202",
|
||||
"isLocal": true
|
||||
},
|
||||
{
|
||||
"id": "8d6a",
|
||||
"title": "69b64b45-dc21-5230-951c-9722db631cd0",
|
||||
"description": "",
|
||||
"categoryId": "1",
|
||||
"photoTypeId": "2",
|
||||
"resolution": "1920x1080",
|
||||
"size": 148,
|
||||
"tags": [],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:40:37.865Z",
|
||||
"albumId": "f425",
|
||||
"url": "blob:http://localhost:5173/c9add7de-9d40-4d99-bc5d-a7cb6833d8ca",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/4db04195-d6d0-4c0d-8a97-4ab8d96c3f97",
|
||||
"isLocal": true
|
||||
},
|
||||
{
|
||||
"id": "27fb",
|
||||
"title": "screen-4",
|
||||
"description": "",
|
||||
"categoryId": "1",
|
||||
"photoTypeId": "2",
|
||||
"resolution": "1920x1080",
|
||||
"size": 435,
|
||||
"tags": [],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:40:43.087Z",
|
||||
"albumId": "f425",
|
||||
"url": "blob:http://localhost:5173/7508029e-d533-40e3-b3e6-973ec3b0da00",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/3a46253a-74b7-4518-9d03-45fb5977e243",
|
||||
"isLocal": true
|
||||
},
|
||||
{
|
||||
"id": "7f1e",
|
||||
"title": "scale_1200",
|
||||
"description": "",
|
||||
"categoryId": "1",
|
||||
"photoTypeId": "2",
|
||||
"resolution": "1920x1080",
|
||||
"size": 134,
|
||||
"tags": [],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:40:51.020Z",
|
||||
"albumId": "f425",
|
||||
"url": "blob:http://localhost:5173/906487c0-bcce-409b-90c0-4dfee991f1cc",
|
||||
"thumbnailUrl": "blob:http://localhost:5173/2b9748a6-0eb3-4ba7-b2b3-6c17877dfc84",
|
||||
"isLocal": true
|
||||
}
|
||||
],
|
||||
"files": [
|
||||
{
|
||||
"id": "2198",
|
||||
"description": "ываыфва",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"фываывфа"
|
||||
],
|
||||
"userId": "1747470047267",
|
||||
"createdAt": "2025-05-17T08:25:10.224Z",
|
||||
"title": "lecture",
|
||||
"fileTypeId": "1",
|
||||
"format": "PDF",
|
||||
"size": 3748,
|
||||
"url": "blob:http://localhost:5173/1fbade02-7383-4ba0-8ab0-542558d3d6b6",
|
||||
"thumbnailUrl": "/images/pdf.png"
|
||||
},
|
||||
{
|
||||
"id": "91b2",
|
||||
"description": "ыфвафыва",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"фывафыв"
|
||||
],
|
||||
"userId": "1747470047267",
|
||||
"createdAt": "2025-05-17T08:24:26.619Z",
|
||||
"title": "Идея",
|
||||
"fileTypeId": "1",
|
||||
"format": "DOCX",
|
||||
"size": 997,
|
||||
"url": "blob:http://localhost:5173/b3cb33b3-4afa-4eaa-a49a-89dd5cd0d4a8",
|
||||
"thumbnailUrl": "/images/docx.png"
|
||||
},
|
||||
{
|
||||
"id": "ae8e",
|
||||
"description": "asdfasd",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"asdfasfd"
|
||||
],
|
||||
"userId": "1747470900104",
|
||||
"createdAt": "2025-05-17T08:35:09.857Z",
|
||||
"title": "1 лаба",
|
||||
"fileTypeId": "1",
|
||||
"format": "DOCX",
|
||||
"size": 25,
|
||||
"url": "blob:http://localhost:5173/b76d9fb5-4bc5-429d-badd-54ff6314da4f",
|
||||
"thumbnailUrl": "/images/docx.png"
|
||||
},
|
||||
{
|
||||
"id": "430a",
|
||||
"description": "asdfsdf",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"asdf"
|
||||
],
|
||||
"userId": "1747470900104",
|
||||
"createdAt": "2025-05-17T08:38:30.047Z",
|
||||
"title": "lecture",
|
||||
"fileTypeId": "1",
|
||||
"format": "PDF",
|
||||
"size": 3748,
|
||||
"url": "blob:http://localhost:5173/fbeca377-ae30-4f4b-b6a9-a45316fb0513",
|
||||
"thumbnailUrl": "/images/pdf.png"
|
||||
},
|
||||
{
|
||||
"id": "e41a",
|
||||
"description": "asdfsadf",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"asdfasdf"
|
||||
],
|
||||
"userId": "1747470900104",
|
||||
"createdAt": "2025-05-17T08:38:58.617Z",
|
||||
"title": "Цифровая зависимость",
|
||||
"fileTypeId": "1",
|
||||
"format": "PPTX",
|
||||
"size": 3507,
|
||||
"url": "blob:http://localhost:5173/0a72c1f5-0cfc-4825-abbb-7d3f2837613c",
|
||||
"thumbnailUrl": "/images/pptx.png"
|
||||
},
|
||||
{
|
||||
"id": "ce45",
|
||||
"description": "guyg",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"assdfa"
|
||||
],
|
||||
"userId": "1747470900104",
|
||||
"createdAt": "2025-05-17T08:41:03.824Z",
|
||||
"title": "Тактика видения боя ",
|
||||
"fileTypeId": "1",
|
||||
"format": "DOCX",
|
||||
"size": 242,
|
||||
"url": "blob:http://localhost:5173/cd0c2e3f-5040-476b-9c89-82995cdb3422",
|
||||
"thumbnailUrl": "/images/docx.png"
|
||||
},
|
||||
{
|
||||
"id": "ed6a",
|
||||
"description": "wqehrkuwqe",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"asdfd"
|
||||
],
|
||||
"userId": "1747470900104",
|
||||
"createdAt": "2025-05-17T08:44:06.602Z",
|
||||
"title": "Зачет",
|
||||
"fileTypeId": "1",
|
||||
"format": "PDF",
|
||||
"size": 237,
|
||||
"url": "blob:http://localhost:5173/3b55651a-95f5-4fd9-a471-8cf9a1bd4c79",
|
||||
"thumbnailUrl": "/images/pdf.png"
|
||||
},
|
||||
{
|
||||
"id": "ecaa",
|
||||
"description": "Это мои работы",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"#какжеяустал"
|
||||
],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:36:45.329Z",
|
||||
"title": "БЖД 4 вроде хз",
|
||||
"fileTypeId": "1",
|
||||
"format": "DOCX",
|
||||
"size": 17,
|
||||
"url": "blob:http://localhost:5173/37ba6d88-7864-40ab-ae36-2e981da407ca",
|
||||
"thumbnailUrl": "/images/docx.png"
|
||||
},
|
||||
{
|
||||
"id": "b563",
|
||||
"description": "А это pdf",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"мой pdf"
|
||||
],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:37:38.896Z",
|
||||
"title": "Анатомия черепных нервов",
|
||||
"fileTypeId": "1",
|
||||
"format": "PDF",
|
||||
"size": 2620,
|
||||
"url": "blob:http://localhost:5173/59cbfe99-178c-4367-aeab-52508f5972e4",
|
||||
"thumbnailUrl": "/images/pdf.png"
|
||||
},
|
||||
{
|
||||
"id": "5a37",
|
||||
"description": "это презентация",
|
||||
"categoryId": "1",
|
||||
"tags": [
|
||||
"#Презентую"
|
||||
],
|
||||
"userId": "1747560598612",
|
||||
"createdAt": "2025-05-18T09:38:13.190Z",
|
||||
"title": "Цифровая зависимость",
|
||||
"fileTypeId": "1",
|
||||
"format": "PPTX",
|
||||
"size": 3507,
|
||||
"url": "blob:http://localhost:5173/e7e5f7f5-6f26-47b7-bc62-fa3dd8f3eaba",
|
||||
"thumbnailUrl": "/images/pptx.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
14
dist/index.html
vendored
14
dist/index.html
vendored
@@ -1,14 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + React</title>
|
||||
<script type="module" crossorigin src="./assets/index-Bos35oqw.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="./assets/index-BL-UqAGR.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
95
index.html
95
index.html
@@ -1,13 +1,82 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + React</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.jsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>SweetyDisk</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<!-- Шапка -->
|
||||
<header class="site-header">
|
||||
<div class="logo-container">
|
||||
<img src="src/cover.png" alt="Логотип SweetyDisk" class="logo">
|
||||
<h1 class="site-title">SweetyDisk</h1>
|
||||
</div>
|
||||
<nav class="navbar">
|
||||
<div class="menu-container">
|
||||
<button class="menu-button" onclick="toggleMenu()">Меню</button>
|
||||
<div class="dropdown-content" id="dropdownMenu">
|
||||
<a href="Password.html" class="dropdown-button">Войти</a>
|
||||
<button class="dropdown-button" onclick="document.getElementById('file-input').click()">Загрузить</button>
|
||||
<input type="file" id="file-input" style="display: none;">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="File.html" class="button">Файлы</a></li>
|
||||
<li><a href="Photo.html" class="button">Фото</a></li>
|
||||
<li><a href="Album.html" class="button">Альбом</a></li>
|
||||
<li><a href="Basket.html" class="button">Корзина</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Содержимое -->
|
||||
<main class="site-content">
|
||||
<div class="text-block">
|
||||
<h2>Добро пожаловать на SweetyDisk!</h2>
|
||||
<p>Здесь вы сможете загружать и хранить важные для вас данные.</p>
|
||||
<p>А самое главное по очень сладкой цене.</p>
|
||||
</div>
|
||||
<div class="new-table-container">
|
||||
<table>
|
||||
<tr><th colspan="3">Варианты Подписки</th></tr>
|
||||
<tr>
|
||||
<td>30 лет - 30.000 руб - 30 Тб</td>
|
||||
<td>10 лет - 10.000 руб - 10 Тб</td>
|
||||
<td>1 год - 1.000 руб - 1 Тб</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Подвал -->
|
||||
<footer class="site-footer">
|
||||
<div class="footer-content">
|
||||
<div class="contact-info">
|
||||
<h4>Контакты</h4>
|
||||
<address>
|
||||
Адрес: г. Ульяновск<br>
|
||||
Телефон: +7 (495) 123-45-67<br>
|
||||
Email: info@sweetydisk.ru<br>
|
||||
Время работы: Пн-Пт, 9:00–18:00
|
||||
</address>
|
||||
</div>
|
||||
<div class="social-icons">
|
||||
<a href="#"><img src="src/vkontakte.png" alt="VK" class="social-icon"> VK</a>
|
||||
<a href="#"><img src="src/telegram.png" alt="Telegram" class="social-icon"> Telegram</a>
|
||||
</div>
|
||||
</div>
|
||||
<small>© 2023 SweetyDisk. Все права защищены.</small>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const dropdown = document.getElementById('dropdownMenu');
|
||||
dropdown.classList.toggle('show');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
27
makets.html
Normal file
27
makets.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>SweetyDisk</title>
|
||||
<link rel="stylesheet" href="css/Style.css">
|
||||
</head>
|
||||
<body>
|
||||
<!-- Шапка -->
|
||||
<header class="header">
|
||||
<img class="cover" alt="Логотип SweetyDisk"/>
|
||||
</header>
|
||||
|
||||
<nav class="navbar">
|
||||
<ul>
|
||||
<p>навигация</p>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main class="content">
|
||||
<p>Содержимое</p>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<p>Подвал</p>
|
||||
</footer>
|
||||
16
node_modules/.bin/acorn
generated
vendored
16
node_modules/.bin/acorn
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
|
||||
else
|
||||
exec node "$basedir/../acorn/bin/acorn" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/acorn.cmd
generated
vendored
17
node_modules/.bin/acorn.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\acorn\bin\acorn" %*
|
||||
28
node_modules/.bin/acorn.ps1
generated
vendored
28
node_modules/.bin/acorn.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../acorn/bin/acorn" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/browserslist
generated
vendored
16
node_modules/.bin/browserslist
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../browserslist/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../browserslist/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/browserslist.cmd
generated
vendored
17
node_modules/.bin/browserslist.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\browserslist\cli.js" %*
|
||||
28
node_modules/.bin/browserslist.ps1
generated
vendored
28
node_modules/.bin/browserslist.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../browserslist/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../browserslist/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../browserslist/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/esbuild
generated
vendored
16
node_modules/.bin/esbuild
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../esbuild/bin/esbuild" "$@"
|
||||
else
|
||||
exec node "$basedir/../esbuild/bin/esbuild" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/esbuild.cmd
generated
vendored
17
node_modules/.bin/esbuild.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esbuild\bin\esbuild" %*
|
||||
28
node_modules/.bin/esbuild.ps1
generated
vendored
28
node_modules/.bin/esbuild.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/eslint
generated
vendored
16
node_modules/.bin/eslint
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../eslint/bin/eslint.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../eslint/bin/eslint.js" "$@"
|
||||
fi
|
||||
16
node_modules/.bin/eslint-config-prettier
generated
vendored
16
node_modules/.bin/eslint-config-prettier
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../eslint-config-prettier/bin/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../eslint-config-prettier/bin/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/eslint-config-prettier.cmd
generated
vendored
17
node_modules/.bin/eslint-config-prettier.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\eslint-config-prettier\bin\cli.js" %*
|
||||
28
node_modules/.bin/eslint-config-prettier.ps1
generated
vendored
28
node_modules/.bin/eslint-config-prettier.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../eslint-config-prettier/bin/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../eslint-config-prettier/bin/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../eslint-config-prettier/bin/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../eslint-config-prettier/bin/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
17
node_modules/.bin/eslint.cmd
generated
vendored
17
node_modules/.bin/eslint.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\eslint\bin\eslint.js" %*
|
||||
28
node_modules/.bin/eslint.ps1
generated
vendored
28
node_modules/.bin/eslint.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../eslint/bin/eslint.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../eslint/bin/eslint.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../eslint/bin/eslint.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/he
generated
vendored
16
node_modules/.bin/he
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../he/bin/he" "$@"
|
||||
else
|
||||
exec node "$basedir/../he/bin/he" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/he.cmd
generated
vendored
17
node_modules/.bin/he.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\he\bin\he" %*
|
||||
28
node_modules/.bin/he.ps1
generated
vendored
28
node_modules/.bin/he.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../he/bin/he" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../he/bin/he" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../he/bin/he" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../he/bin/he" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/http-server
generated
vendored
16
node_modules/.bin/http-server
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../http-server/bin/http-server" "$@"
|
||||
else
|
||||
exec node "$basedir/../http-server/bin/http-server" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/http-server.cmd
generated
vendored
17
node_modules/.bin/http-server.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\http-server\bin\http-server" %*
|
||||
28
node_modules/.bin/http-server.ps1
generated
vendored
28
node_modules/.bin/http-server.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/js-yaml
generated
vendored
16
node_modules/.bin/js-yaml
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../js-yaml/bin/js-yaml.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/js-yaml.cmd
generated
vendored
17
node_modules/.bin/js-yaml.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\js-yaml\bin\js-yaml.js" %*
|
||||
28
node_modules/.bin/js-yaml.ps1
generated
vendored
28
node_modules/.bin/js-yaml.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../js-yaml/bin/js-yaml.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/jsesc
generated
vendored
16
node_modules/.bin/jsesc
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../jsesc/bin/jsesc" "$@"
|
||||
else
|
||||
exec node "$basedir/../jsesc/bin/jsesc" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/jsesc.cmd
generated
vendored
17
node_modules/.bin/jsesc.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\jsesc\bin\jsesc" %*
|
||||
28
node_modules/.bin/jsesc.ps1
generated
vendored
28
node_modules/.bin/jsesc.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../jsesc/bin/jsesc" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/json5
generated
vendored
16
node_modules/.bin/json5
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../json5/lib/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../json5/lib/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/json5.cmd
generated
vendored
17
node_modules/.bin/json5.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\json5\lib\cli.js" %*
|
||||
28
node_modules/.bin/json5.ps1
generated
vendored
28
node_modules/.bin/json5.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../json5/lib/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/loose-envify
generated
vendored
16
node_modules/.bin/loose-envify
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../loose-envify/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../loose-envify/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/loose-envify.cmd
generated
vendored
17
node_modules/.bin/loose-envify.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\loose-envify\cli.js" %*
|
||||
28
node_modules/.bin/loose-envify.ps1
generated
vendored
28
node_modules/.bin/loose-envify.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../loose-envify/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../loose-envify/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../loose-envify/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../loose-envify/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/mime
generated
vendored
16
node_modules/.bin/mime
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../mime/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../mime/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/mime.cmd
generated
vendored
17
node_modules/.bin/mime.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %*
|
||||
28
node_modules/.bin/mime.ps1
generated
vendored
28
node_modules/.bin/mime.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../mime/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../mime/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/nanoid
generated
vendored
16
node_modules/.bin/nanoid
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||
else
|
||||
exec node "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/nanoid.cmd
generated
vendored
17
node_modules/.bin/nanoid.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nanoid\bin\nanoid.cjs" %*
|
||||
28
node_modules/.bin/nanoid.ps1
generated
vendored
28
node_modules/.bin/nanoid.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../nanoid/bin/nanoid.cjs" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/node-which
generated
vendored
16
node_modules/.bin/node-which
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../which/bin/node-which" "$@"
|
||||
else
|
||||
exec node "$basedir/../which/bin/node-which" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/node-which.cmd
generated
vendored
17
node_modules/.bin/node-which.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\which\bin\node-which" %*
|
||||
28
node_modules/.bin/node-which.ps1
generated
vendored
28
node_modules/.bin/node-which.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../which/bin/node-which" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../which/bin/node-which" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../which/bin/node-which" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../which/bin/node-which" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/npm-run-all
generated
vendored
16
node_modules/.bin/npm-run-all
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../npm-run-all/bin/npm-run-all/index.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../npm-run-all/bin/npm-run-all/index.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/npm-run-all.cmd
generated
vendored
17
node_modules/.bin/npm-run-all.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\npm-run-all\bin\npm-run-all\index.js" %*
|
||||
28
node_modules/.bin/npm-run-all.ps1
generated
vendored
28
node_modules/.bin/npm-run-all.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../npm-run-all/bin/npm-run-all/index.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../npm-run-all/bin/npm-run-all/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../npm-run-all/bin/npm-run-all/index.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../npm-run-all/bin/npm-run-all/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/opener
generated
vendored
16
node_modules/.bin/opener
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../opener/bin/opener-bin.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../opener/bin/opener-bin.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/opener.cmd
generated
vendored
17
node_modules/.bin/opener.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\opener\bin\opener-bin.js" %*
|
||||
28
node_modules/.bin/opener.ps1
generated
vendored
28
node_modules/.bin/opener.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../opener/bin/opener-bin.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../opener/bin/opener-bin.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../opener/bin/opener-bin.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../opener/bin/opener-bin.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/parser
generated
vendored
16
node_modules/.bin/parser
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../@babel/parser/bin/babel-parser.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../@babel/parser/bin/babel-parser.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/parser.cmd
generated
vendored
17
node_modules/.bin/parser.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\@babel\parser\bin\babel-parser.js" %*
|
||||
28
node_modules/.bin/parser.ps1
generated
vendored
28
node_modules/.bin/parser.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../@babel/parser/bin/babel-parser.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../@babel/parser/bin/babel-parser.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../@babel/parser/bin/babel-parser.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../@babel/parser/bin/babel-parser.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/pidtree
generated
vendored
16
node_modules/.bin/pidtree
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../pidtree/bin/pidtree.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../pidtree/bin/pidtree.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/pidtree.cmd
generated
vendored
17
node_modules/.bin/pidtree.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\pidtree\bin\pidtree.js" %*
|
||||
28
node_modules/.bin/pidtree.ps1
generated
vendored
28
node_modules/.bin/pidtree.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../pidtree/bin/pidtree.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../pidtree/bin/pidtree.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../pidtree/bin/pidtree.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../pidtree/bin/pidtree.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/prettier
generated
vendored
16
node_modules/.bin/prettier
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../prettier/bin/prettier.cjs" "$@"
|
||||
else
|
||||
exec node "$basedir/../prettier/bin/prettier.cjs" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/prettier.cmd
generated
vendored
17
node_modules/.bin/prettier.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\prettier\bin\prettier.cjs" %*
|
||||
28
node_modules/.bin/prettier.ps1
generated
vendored
28
node_modules/.bin/prettier.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../prettier/bin/prettier.cjs" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../prettier/bin/prettier.cjs" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../prettier/bin/prettier.cjs" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../prettier/bin/prettier.cjs" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/resolve
generated
vendored
16
node_modules/.bin/resolve
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../resolve/bin/resolve" "$@"
|
||||
else
|
||||
exec node "$basedir/../resolve/bin/resolve" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/resolve.cmd
generated
vendored
17
node_modules/.bin/resolve.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\resolve\bin\resolve" %*
|
||||
28
node_modules/.bin/resolve.ps1
generated
vendored
28
node_modules/.bin/resolve.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../resolve/bin/resolve" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../resolve/bin/resolve" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../resolve/bin/resolve" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../resolve/bin/resolve" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/rimraf
generated
vendored
16
node_modules/.bin/rimraf
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../rimraf/bin.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../rimraf/bin.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/rimraf.cmd
generated
vendored
17
node_modules/.bin/rimraf.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rimraf\bin.js" %*
|
||||
28
node_modules/.bin/rimraf.ps1
generated
vendored
28
node_modules/.bin/rimraf.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../rimraf/bin.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../rimraf/bin.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../rimraf/bin.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/rollup
generated
vendored
16
node_modules/.bin/rollup
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../rollup/dist/bin/rollup" "$@"
|
||||
else
|
||||
exec node "$basedir/../rollup/dist/bin/rollup" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/rollup.cmd
generated
vendored
17
node_modules/.bin/rollup.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\rollup\dist\bin\rollup" %*
|
||||
28
node_modules/.bin/rollup.ps1
generated
vendored
28
node_modules/.bin/rollup.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../rollup/dist/bin/rollup" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/run-p
generated
vendored
16
node_modules/.bin/run-p
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../npm-run-all/bin/run-p/index.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../npm-run-all/bin/run-p/index.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/run-p.cmd
generated
vendored
17
node_modules/.bin/run-p.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\npm-run-all\bin\run-p\index.js" %*
|
||||
28
node_modules/.bin/run-p.ps1
generated
vendored
28
node_modules/.bin/run-p.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../npm-run-all/bin/run-p/index.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../npm-run-all/bin/run-p/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../npm-run-all/bin/run-p/index.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../npm-run-all/bin/run-p/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/run-s
generated
vendored
16
node_modules/.bin/run-s
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../npm-run-all/bin/run-s/index.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../npm-run-all/bin/run-s/index.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/run-s.cmd
generated
vendored
17
node_modules/.bin/run-s.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\npm-run-all\bin\run-s\index.js" %*
|
||||
28
node_modules/.bin/run-s.ps1
generated
vendored
28
node_modules/.bin/run-s.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../npm-run-all/bin/run-s/index.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../npm-run-all/bin/run-s/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../npm-run-all/bin/run-s/index.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../npm-run-all/bin/run-s/index.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/semver
generated
vendored
16
node_modules/.bin/semver
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../semver/bin/semver.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/semver.cmd
generated
vendored
17
node_modules/.bin/semver.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver.js" %*
|
||||
28
node_modules/.bin/semver.ps1
generated
vendored
28
node_modules/.bin/semver.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../semver/bin/semver.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../semver/bin/semver.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/update-browserslist-db
generated
vendored
16
node_modules/.bin/update-browserslist-db
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../update-browserslist-db/cli.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../update-browserslist-db/cli.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/update-browserslist-db.cmd
generated
vendored
17
node_modules/.bin/update-browserslist-db.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\update-browserslist-db\cli.js" %*
|
||||
28
node_modules/.bin/update-browserslist-db.ps1
generated
vendored
28
node_modules/.bin/update-browserslist-db.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../update-browserslist-db/cli.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
16
node_modules/.bin/vite
generated
vendored
16
node_modules/.bin/vite
generated
vendored
@@ -1,16 +0,0 @@
|
||||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*|*MINGW*|*MSYS*)
|
||||
if command -v cygpath > /dev/null 2>&1; then
|
||||
basedir=`cygpath -w "$basedir"`
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
||||
else
|
||||
exec node "$basedir/../vite/bin/vite.js" "$@"
|
||||
fi
|
||||
17
node_modules/.bin/vite.cmd
generated
vendored
17
node_modules/.bin/vite.cmd
generated
vendored
@@ -1,17 +0,0 @@
|
||||
@ECHO off
|
||||
GOTO start
|
||||
:find_dp0
|
||||
SET dp0=%~dp0
|
||||
EXIT /b
|
||||
:start
|
||||
SETLOCAL
|
||||
CALL :find_dp0
|
||||
|
||||
IF EXIST "%dp0%\node.exe" (
|
||||
SET "_prog=%dp0%\node.exe"
|
||||
) ELSE (
|
||||
SET "_prog=node"
|
||||
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
)
|
||||
|
||||
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\vite\bin\vite.js" %*
|
||||
28
node_modules/.bin/vite.ps1
generated
vendored
28
node_modules/.bin/vite.ps1
generated
vendored
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/env pwsh
|
||||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||
|
||||
$exe=""
|
||||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||
# Fix case when both the Windows and Linux builds of Node
|
||||
# are installed in the same directory
|
||||
$exe=".exe"
|
||||
}
|
||||
$ret=0
|
||||
if (Test-Path "$basedir/node$exe") {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "$basedir/node$exe" "$basedir/../vite/bin/vite.js" $args
|
||||
} else {
|
||||
& "$basedir/node$exe" "$basedir/../vite/bin/vite.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
} else {
|
||||
# Support pipeline input
|
||||
if ($MyInvocation.ExpectingInput) {
|
||||
$input | & "node$exe" "$basedir/../vite/bin/vite.js" $args
|
||||
} else {
|
||||
& "node$exe" "$basedir/../vite/bin/vite.js" $args
|
||||
}
|
||||
$ret=$LASTEXITCODE
|
||||
}
|
||||
exit $ret
|
||||
5532
node_modules/.package-lock.json
generated
vendored
5532
node_modules/.package-lock.json
generated
vendored
File diff suppressed because it is too large
Load Diff
67
node_modules/.vite/deps/_metadata.json
generated
vendored
67
node_modules/.vite/deps/_metadata.json
generated
vendored
@@ -1,67 +0,0 @@
|
||||
{
|
||||
"hash": "7ecd9ebc",
|
||||
"configHash": "c09be69d",
|
||||
"lockfileHash": "d0f0261e",
|
||||
"browserHash": "10b77088",
|
||||
"optimized": {
|
||||
"react": {
|
||||
"src": "../../react/index.js",
|
||||
"file": "react.js",
|
||||
"fileHash": "3f8fa913",
|
||||
"needsInterop": true
|
||||
},
|
||||
"react-dom": {
|
||||
"src": "../../react-dom/index.js",
|
||||
"file": "react-dom.js",
|
||||
"fileHash": "85ab254e",
|
||||
"needsInterop": true
|
||||
},
|
||||
"react/jsx-dev-runtime": {
|
||||
"src": "../../react/jsx-dev-runtime.js",
|
||||
"file": "react_jsx-dev-runtime.js",
|
||||
"fileHash": "82cfc0e1",
|
||||
"needsInterop": true
|
||||
},
|
||||
"react/jsx-runtime": {
|
||||
"src": "../../react/jsx-runtime.js",
|
||||
"file": "react_jsx-runtime.js",
|
||||
"fileHash": "6ab73e42",
|
||||
"needsInterop": true
|
||||
},
|
||||
"react-bootstrap": {
|
||||
"src": "../../react-bootstrap/esm/index.js",
|
||||
"file": "react-bootstrap.js",
|
||||
"fileHash": "993874e2",
|
||||
"needsInterop": false
|
||||
},
|
||||
"react-dom/client": {
|
||||
"src": "../../react-dom/client.js",
|
||||
"file": "react-dom_client.js",
|
||||
"fileHash": "2da2731b",
|
||||
"needsInterop": true
|
||||
},
|
||||
"react-router-dom": {
|
||||
"src": "../../react-router-dom/dist/index.mjs",
|
||||
"file": "react-router-dom.js",
|
||||
"fileHash": "1926617a",
|
||||
"needsInterop": false
|
||||
},
|
||||
"react-toastify": {
|
||||
"src": "../../react-toastify/dist/index.mjs",
|
||||
"file": "react-toastify.js",
|
||||
"fileHash": "6f5a8298",
|
||||
"needsInterop": false
|
||||
}
|
||||
},
|
||||
"chunks": {
|
||||
"chunk-XREXF2BJ": {
|
||||
"file": "chunk-XREXF2BJ.js"
|
||||
},
|
||||
"chunk-T37TWCKW": {
|
||||
"file": "chunk-T37TWCKW.js"
|
||||
},
|
||||
"chunk-QH6HOCAD": {
|
||||
"file": "chunk-QH6HOCAD.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
3
node_modules/.vite/deps/package.json
generated
vendored
3
node_modules/.vite/deps/package.json
generated
vendored
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"type": "module"
|
||||
}
|
||||
5
node_modules/.vite/deps/react-dom.js
generated
vendored
5
node_modules/.vite/deps/react-dom.js
generated
vendored
@@ -1,5 +0,0 @@
|
||||
import {
|
||||
require_react_dom
|
||||
} from "./chunk-T37TWCKW.js";
|
||||
import "./chunk-QH6HOCAD.js";
|
||||
export default require_react_dom();
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user