I might be stupid.

This commit is contained in:
flash 2024-06-09 20:13:03 +00:00
parent 72230e07b0
commit d0b9400212
11 changed files with 160 additions and 170 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@flashwave/assproc",
"version": "0.2.0",
"version": "0.3.0",
"description": "Personal frontend asset processing tool",
"main": "index.js",
"scripts": {

View file

@ -1,10 +1,9 @@
import fs from 'fs';
import readline from 'readline';
import { join as pathJoin } from 'path';
import { trim, trimStart, trimEnd } from './trim.js';
const fs = require('fs');
const readline = require('readline');
const { join: pathJoin } = require('path');
const { trim, trimStart, trimEnd } = require('./trim.js');
const combine = {
folder: async (root, options) => {
exports.folder = async (root, options) => {
const macroPrefix = options.prefix || '#';
const entryPoint = options.entry || '';
@ -86,7 +85,4 @@ const combine = {
};
return await processFile(entryPoint);
},
};
export combine;

View file

@ -1,9 +1,9 @@
import postcss from 'postcss';
import combine from '../combine.js';
import { join as pathJoin } from 'path';
import { strtr, shortHash, writeFile } from './utils.js';
const postcss = require('postcss');
const combine = require('../combine.js');
const { join: pathJoin, dirname } = require('path');
const { strtr, shortHash, writeFile } = require('../utils.js');
export const function(env) {
exports = function(env) {
const PREFIX = '@';
const DEFAULT_ENTRY = 'main.css';

View file

@ -1,8 +1,8 @@
import { minify as htmlminify } from 'html-minifier-terser';
import { join as pathJoin, dirname } from 'path';
import { strtr, shortHash, writeFile } from './utils.js';
const { minify: htmlminify } = require('html-minifier-terser');
const { join: pathJoin, dirname } = require('path');
const { strtr, shortHash, writeFile } = require('../utils.js');
export const function(env) {
exports = function(env) {
const MINIFY_OPTS = {
collapseBooleanAttributes: true,
collapseWhitespace: true,

View file

@ -1,9 +1,10 @@
import swc from '@swc/core';
import combine from '../combine.js';
import { join as pathJoin } from 'path';
import { strtr, shortHash, writeFile } from './utils.js';
const swc = require('@swc/core');
const combine = require('../combine.js');
const { minify: htmlminify } = require('html-minifier-terser');
const { join: pathJoin, } = require('path');
const { strtr, shortHash, writeFile } = require('../utils.js');
export const function(env) {
exports = function(env) {
const PREFIX = '#';
const DEFAULT_ENTRY = 'main.js';
const DEFAULT_VARS_TARGET = 'window';

View file

@ -1,12 +1,9 @@
import { exec as execLie } from 'child_process';
import { promisify } from 'util';
import { minify as htmlminify } from 'html-minifier-terser';
import { join as pathJoin, dirname } from 'path';
import { strtr, shortHash } from './utils.js';
export const function(env) {
const exec = promisify(execLie);
const exec = require('util').promisify(require('child_process').exec);
const { minify: htmlminify } = require('html-minifier-terser');
const { join: pathJoin, dirname } = require('path');
const { strtr, shortHash, writeFile } = require('../utils.js');
exports = function(env) {
const MINIFY_OPTS = {
collapseBooleanAttributes: true,
collapseWhitespace: true,

View file

@ -1,8 +1,8 @@
import fs from 'fs';
import { join as pathJoin, dirname } from 'path';
import { strtr, shortHash, writeFile } from './utils.js';
const fs = require('fs');
const { join: pathJoin, dirname } = require('path');
const { strtr, shortHash, writeFile } = require('../utils.js');
export const function(env) {
exports = function(env) {
return {
process: async (task, vars) => {
let body = JSON.parse(fs.readFileSync(pathJoin(env.source, task.source)));

View file

@ -1,7 +1,7 @@
import fs from 'fs';
import { join as pathJoin } from 'path';
const fs = require('fs');
const { join: pathJoin } = require('path');
export const housekeep = path => {
exports.housekeep = path => {
const files = fs.readdirSync(path).map(fileName => {
const stats = fs.statSync(pathJoin(path, fileName));
return {

View file

@ -1,9 +1,9 @@
import apCss from './handlers/css.js';
import apHtml from './handlers/html.js';
import apJs from './handlers/js.js';
import apTwig from './handlers/twig.js';
import apWebManifest from './handlers/webmanifest.js';
import { housekeep } from './housekeep.js';
const apCss = require('./handlers/css.js');
const apHtml = require('./handlers/html.js');
const apJs = require('./handlers/js.js');
const apTwig = require('./handlers/twig.js');
const apWebManifest = require('./handlers/webmanifest.js');
const { housekeep } = require('./housekeep.js');
const DEFAULT_ENV = {
debug: false,
@ -23,8 +23,7 @@ const DEFAULT_ENV = {
},
};
const public = {
process: async (env, tasks) => {
exports.process = async (env, tasks) => {
if(typeof env.source !== 'string')
throw 'env.source must be a path to the source directories';
if(typeof env.public !== 'string')
@ -90,7 +89,4 @@ const public = {
}
return files;
},
};
export public;

View file

@ -16,6 +16,6 @@ const trim = (str, chars = " \n\r\t\v\0", flags = 0) => {
return str;
};
export const trimStart = (str, chars) => trim(str, chars, 0x01);
export const trimEnd = (str, chars) => trim(str, chars, 0x02);
export const trim = (str, chars) => trim(str, chars, 0x03);
exports.trimStart = (str, chars) => trim(str, chars, 0x01);
exports.trimEnd = (str, chars) => trim(str, chars, 0x02);
exports.trim = (str, chars) => trim(str, chars, 0x03);

View file

@ -1,18 +1,18 @@
import crypto from 'crypto';
import fs from 'fs';
import { dirname } from 'path';
const crypto = require('crypto');
const fs = require('fs');
const { dirname } = require('path');
export const strtr = (str, replacements) => str.toString().replace(
exports.strtr = (str, replacements) => str.toString().replace(
/{([^}]+)}/g, (match, key) => replacements[key] || match
);
export const shortHash = text => {
exports.shortHash = text => {
const hash = crypto.createHash('sha256');
hash.update(text);
return hash.digest('hex').substring(0, 8);
};
export const writeFile = (path, data) => {
exports.writeFile = (path, data) => {
const folderPath = dirname(path);
if(!fs.existsSync(folderPath))
fs.mkdirSync(folderPath, { recursive: true });