-
-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
48 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
const fs = require("node:fs"); | ||
const path = require("node:path"); | ||
const sass = require("sass"); | ||
const autoprefixer = require("autoprefixer"); | ||
const postcss = require("postcss"); | ||
// @ts-check | ||
import fs from "node:fs"; | ||
import path from "node:path"; | ||
import sass from "sass"; | ||
import autoprefixer from "autoprefixer"; | ||
import postcss from "postcss"; | ||
|
||
(async () => { | ||
const scss = fs | ||
.readdirSync("css") | ||
.filter((file) => file.endsWith(".scss") && !/^\_popover/.test(file)) | ||
.map((file) => path.parse(file)); | ||
const scss = fs | ||
.readdirSync("css") | ||
.filter((file) => file.endsWith(".scss") && !/^\_popover/.test(file)) | ||
.map((file) => path.parse(file)); | ||
|
||
for (const { name, base } of scss) { | ||
const file = `css/${base}`; | ||
const outFile = `css/${name}.css`; | ||
for (const { name, base } of scss) { | ||
const file = `css/${base}`; | ||
const outFile = `css/${name}.css`; | ||
|
||
console.log("[build-css]", file, "-->", outFile); | ||
console.log("[build-css]", file, "-->", outFile); | ||
|
||
const { css } = sass.renderSync({ | ||
file, | ||
outFile, | ||
outputStyle: "compressed", | ||
omitSourceMapUrl: true, | ||
includePaths: ["node_modules"], | ||
}); | ||
const { css } = sass.renderSync({ | ||
file, | ||
outFile, | ||
outputStyle: "compressed", | ||
omitSourceMapUrl: true, | ||
includePaths: ["node_modules"], | ||
}); | ||
|
||
const prefixed = await postcss([ | ||
autoprefixer({ | ||
overrideBrowserslist: ["last 1 version", "ie >= 11", "Firefox ESR"], | ||
}), | ||
]).process(css, { from: undefined }); | ||
const prefixed = await postcss([ | ||
autoprefixer({ | ||
overrideBrowserslist: ["last 1 version", "ie >= 11", "Firefox ESR"], | ||
}), | ||
]).process(css, { from: undefined }); | ||
|
||
fs.writeFileSync(outFile, prefixed.css); | ||
} | ||
})(); | ||
fs.writeFileSync(outFile, prefixed.css); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
const fs = require("node:fs"); | ||
const path = require("node:path"); | ||
|
||
const packagePath = path.join(process.cwd(), "package.json"); | ||
const package = JSON.parse(fs.readFileSync(packagePath, "utf8")); | ||
// @ts-check | ||
import fs from "node:fs"; | ||
import path from "node:path"; | ||
import pkg from "../package.json" assert { type: "json" }; | ||
|
||
/** @type {Array<keyof typeof pkg>} */ | ||
const keys_to_remove = ["prettier", "standard-version", "devDependencies"]; | ||
const scripts_to_keep = ["postinstall"]; | ||
|
||
for (const key of keys_to_remove) { | ||
delete package[key]; | ||
delete pkg[key]; | ||
} | ||
|
||
if (package.scripts) { | ||
const preserved_scripts = {}; | ||
/** @type {Set<keyof typeof pkg.scripts>} */ | ||
const scripts_to_keep = new Set(["postinstall"]); | ||
|
||
for (const script of scripts_to_keep) { | ||
if (package.scripts[script]) { | ||
preserved_scripts[script] = package.scripts[script]; | ||
} | ||
for (const script in pkg.scripts) { | ||
// @ts-ignore | ||
if (!scripts_to_keep.has(script)) { | ||
delete pkg.scripts[script]; | ||
} | ||
|
||
package.scripts = preserved_scripts; | ||
} | ||
|
||
fs.writeFileSync(packagePath, JSON.stringify(package, null, 2) + "\n"); | ||
// Write the updated package.json file. | ||
const pkgPath = path.join(process.cwd(), "package.json"); | ||
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n"); |