From 9d4826d72b647e619df8f3b40c01cb734c589af5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 31 Mar 2025 13:07:09 -0700 Subject: [PATCH] chore(css-config.js): drop autoprefixer dependency --- config/plugins/css-config.js | 2 -- package-lock.json | 67 ++---------------------------------- package.json | 3 +- 3 files changed, 3 insertions(+), 69 deletions(-) diff --git a/config/plugins/css-config.js b/config/plugins/css-config.js index 50fe022..86480f7 100644 --- a/config/plugins/css-config.js +++ b/config/plugins/css-config.js @@ -3,7 +3,6 @@ import path from "node:path"; import postcss from "postcss"; import postcssImport from "postcss-import"; import postcssImportExtGlob from "postcss-import-ext-glob"; -import autoprefixer from "autoprefixer"; import cssnano from "cssnano"; export const cssConfig = (eleventyConfig) => { @@ -18,7 +17,6 @@ export const cssConfig = (eleventyConfig) => { let result = await postcss([ postcssImportExtGlob, postcssImport, - autoprefixer, cssnano, ]).process(inputContent, { from: inputPath }); diff --git a/package-lock.json b/package-lock.json index 372a947..bde717f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "1.1.8", + "version": "1.1.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "1.1.8", + "version": "1.1.9", "license": "MIT", "dependencies": { "minisearch": "^7.1.2", @@ -16,7 +16,6 @@ "@11ty/eleventy": "v3.0.0", "@11ty/eleventy-fetch": "5.0.2", "@cdransf/eleventy-plugin-tabler-icons": "^2.11.1", - "autoprefixer": "^10.4.21", "cssnano": "^7.0.6", "dotenv": "16.4.7", "ics": "^3.8.1", @@ -867,44 +866,6 @@ "dev": true, "license": "MIT" }, - "node_modules/autoprefixer": { - "version": "10.4.21", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", - "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.24.4", - "caniuse-lite": "^1.0.30001702", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.1.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -2201,20 +2162,6 @@ "node": ">= 6" } }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, "node_modules/fresh": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", @@ -3250,16 +3197,6 @@ "node": ">=0.10.0" } }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", diff --git a/package.json b/package.json index 64b0e1d..45d6499 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "1.1.8", + "version": "1.1.9", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "engines": { @@ -37,7 +37,6 @@ "@11ty/eleventy": "v3.0.0", "@11ty/eleventy-fetch": "5.0.2", "@cdransf/eleventy-plugin-tabler-icons": "^2.11.1", - "autoprefixer": "^10.4.21", "cssnano": "^7.0.6", "dotenv": "16.4.7", "ics": "^3.8.1",