fix: scripts
This commit is contained in:
parent
55326dab7d
commit
c108ea3732
4 changed files with 11 additions and 27 deletions
|
@ -32,7 +32,6 @@ export const copyErrorPages = () => {
|
||||||
|
|
||||||
export const minifyJsComponents = async () => {
|
export const minifyJsComponents = async () => {
|
||||||
const scriptsDir = '_site/assets/scripts'
|
const scriptsDir = '_site/assets/scripts'
|
||||||
let combinedJs = ''
|
|
||||||
|
|
||||||
const minifyJsFilesInDir = async (dir) => {
|
const minifyJsFilesInDir = async (dir) => {
|
||||||
const files = fs.readdirSync(dir)
|
const files = fs.readdirSync(dir)
|
||||||
|
@ -41,33 +40,20 @@ export const minifyJsComponents = async () => {
|
||||||
const stat = fs.statSync(filePath)
|
const stat = fs.statSync(filePath)
|
||||||
|
|
||||||
if (stat.isDirectory()) {
|
if (stat.isDirectory()) {
|
||||||
if (fileName === 'components') {
|
await minifyJsFilesInDir(filePath)
|
||||||
const componentFiles = fs.readdirSync(filePath)
|
|
||||||
for (const componentFile of componentFiles) {
|
|
||||||
const componentFilePath = path.join(filePath, componentFile)
|
|
||||||
if (componentFile.endsWith('.js')) {
|
|
||||||
const componentContent = fs.readFileSync(componentFilePath, 'utf8')
|
|
||||||
const minified = await minify(componentContent)
|
|
||||||
fs.writeFileSync(componentFilePath, minified.code)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
await minifyJsFilesInDir(filePath)
|
|
||||||
}
|
|
||||||
} else if (fileName.endsWith('.js')) {
|
} else if (fileName.endsWith('.js')) {
|
||||||
const fileContent = fs.readFileSync(filePath, 'utf8')
|
const fileContent = fs.readFileSync(filePath, 'utf8')
|
||||||
const minified = await minify(fileContent)
|
const minified = await minify(fileContent)
|
||||||
fs.writeFileSync(filePath, minified.code)
|
if (minified.error) {
|
||||||
combinedJs += minified.code + ';\n'
|
console.error(`Error minifying ${filePath}:`, minified.error)
|
||||||
|
} else {
|
||||||
|
fs.writeFileSync(filePath, minified.code)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(`⚠ No .js files to minify in ${filePath}`)
|
console.log(`No .js files to minify in ${filePath}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await minifyJsFilesInDir(scriptsDir)
|
await minifyJsFilesInDir(scriptsDir)
|
||||||
const outputFilePath = path.join(scriptsDir, 'index.js')
|
|
||||||
fs.writeFileSync(outputFilePath, combinedJs)
|
|
||||||
|
|
||||||
console.log(`Combined and minified .js files into ${outputFilePath}`)
|
|
||||||
}
|
}
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.3.2",
|
"version": "24.3.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.3.2",
|
"version": "24.3.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.3.2",
|
"version": "24.3.3",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -48,8 +48,6 @@ window.addEventListener('load', () => {
|
||||||
const minHeight = 500 // this needs to match the height set on [data-toggle-content].text-toggle-hidden in text-toggle.css
|
const minHeight = 500 // this needs to match the height set on [data-toggle-content].text-toggle-hidden in text-toggle.css
|
||||||
const interiorHeight = Array.from(text).reduce((acc, node) => acc + node.scrollHeight, 0)
|
const interiorHeight = Array.from(text).reduce((acc, node) => acc + node.scrollHeight, 0)
|
||||||
|
|
||||||
if (!button || !content || !text) return
|
|
||||||
|
|
||||||
if (interiorHeight < minHeight) {
|
if (interiorHeight < minHeight) {
|
||||||
content.classList.remove('text-toggle-hidden')
|
content.classList.remove('text-toggle-hidden')
|
||||||
button.style.display = 'none'
|
button.style.display = 'none'
|
||||||
|
@ -59,5 +57,5 @@ window.addEventListener('load', () => {
|
||||||
const isHidden = content.classList.toggle('text-toggle-hidden')
|
const isHidden = content.classList.toggle('text-toggle-hidden')
|
||||||
button.textContent = isHidden ? 'Show more' : 'Show less'
|
button.textContent = isHidden ? 'Show more' : 'Show less'
|
||||||
})
|
})
|
||||||
})
|
})()
|
||||||
})
|
})
|
Reference in a new issue