v1.0 with SW PWA enabled

This commit is contained in:
Blomios
2026-01-01 17:40:53 +01:00
parent 1c0e22aac1
commit 3c8bebb2ad
29775 changed files with 2197201 additions and 119080 deletions

0
frontend/node_modules/sucrase/bin/sucrase generated vendored Normal file → Executable file
View File

0
frontend/node_modules/sucrase/bin/sucrase-node generated vendored Normal file → Executable file
View File

View File

@ -1,6 +1,6 @@
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }/* eslint-disable no-console */
var _commander = require('commander'); var _commander2 = _interopRequireDefault(_commander);
var _glob = require('glob');
var _tinyglobby = require('tinyglobby');
var _fs = require('mz/fs');
var _path = require('path');
@ -213,7 +213,7 @@ async function runGlob(options) {
}
if (include) {
for (const pattern of include) {
const globFiles = await _glob.glob.call(void 0, _path.join.call(void 0, absProject, pattern));
const globFiles = await _tinyglobby.glob.call(void 0, _path.join.call(void 0, absProject, pattern), {expandDirectories: false});
for (const file of globFiles) {
if (!file.endsWith(".ts") && !file.endsWith(".js")) {
continue;

View File

@ -1,6 +1,6 @@
/* eslint-disable no-console */
import commander from "commander";
import {glob} from "glob";
import {glob} from "tinyglobby";
import {exists, mkdir, readdir, readFile, stat, writeFile} from "mz/fs";
import {dirname, join, relative} from "path";
@ -213,7 +213,7 @@ async function runGlob(options) {
}
if (include) {
for (const pattern of include) {
const globFiles = await glob(join(absProject, pattern));
const globFiles = await glob(join(absProject, pattern), {expandDirectories: false});
for (const file of globFiles) {
if (!file.endsWith(".ts") && !file.endsWith(".js")) {
continue;

View File

@ -29,7 +29,7 @@ import getTSImportedNames from "./util/getTSImportedNames";
export function getVersion() {
/* istanbul ignore next */
return "3.35.0";
return "3.35.1";
}
export function transform(code, options) {

View File

@ -29,7 +29,7 @@ var _getTSImportedNames = require('./util/getTSImportedNames'); var _getTSImport
function getVersion() {
/* istanbul ignore next */
return "3.35.0";
return "3.35.1";
} exports.getVersion = getVersion;
function transform(code, options) {

View File

@ -1,6 +1,6 @@
{
"name": "sucrase",
"version": "3.35.0",
"version": "3.35.1",
"description": "Super-fast alternative to Babel for when you can target modern JS runtimes",
"author": "Alan Pierce <alangpierce@gmail.com>",
"license": "MIT",
@ -65,7 +65,7 @@
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"sucrase": "^3.34.0",
"sucrase": "^3.35.0",
"test262-harness": "^10.0.0",
"ts-interface-builder": "^0.3.3",
"typescript": "~5.0"
@ -73,10 +73,10 @@
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.2",
"commander": "^4.0.0",
"glob": "^10.3.10",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^4.0.1",
"tinyglobby": "^0.2.11",
"ts-interface-checker": "^0.1.9"
},
"engines": {