-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing Fonts file not being included properly
Removed custom LightningCSS bundler plugin and added back in the PostCSS Import plugin.
- Loading branch information
Showing
3 changed files
with
51 additions
and
82 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
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,40 +1,41 @@ | ||
{ | ||
"name": "black-highlighter", | ||
"description": "Modern base theme for the SCP Wiki (build process)", | ||
"version": "1.0.0", | ||
"authors": "Woedenaz, Croquembouche", | ||
"license": "CC-BY-SA-3.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Nu-SCPTheme/Black-Highlighter" | ||
}, | ||
"engines": { | ||
"bun": ">=1.0.17" | ||
}, | ||
"devDependencies": { | ||
"@csstools/postcss-global-data": "^3.0.0", | ||
"autoprefixer": "^10.4.20", | ||
"caniuse-lite": "^1.0.30001651", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^9.9.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"lightningcss": "^1.26.0", | ||
"postcss": "^8.4.41", | ||
"postcss-cli": "^11.0.0", | ||
"postcss-csso": "^6.0.1", | ||
"postcss-lightningcss": "^1.0.1", | ||
"postcss-mixins": "^11.0.0", | ||
"postcss-reporter": "^7.1.0", | ||
"prettier": "^3.3.3", | ||
"stylelint": "^16.8.2", | ||
"stylelint-config-property-sort-order-smacss": "^10.0.0", | ||
"stylelint-config-standard": "^36.0.1", | ||
"svgo": "^3.3.2" | ||
}, | ||
"scripts": { | ||
"build": "make", | ||
"base": "cross-env postcss $bhl_i --config build/postcss.config.mjs -o $bhl_o -w --env $bhl_env --verbose", | ||
"watch": "cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/black-highlighter.css bhl_env=development bun base & cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/min/black-highlighter.min.css bhl_env=production bun base & cross-env bhl_i=src/css/normalize.css bhl_o=dist/css/min/normalize.min.css bhl_env=development bun base" | ||
} | ||
"name": "black-highlighter", | ||
"description": "Modern base theme for the SCP Wiki (build process)", | ||
"version": "1.0.0", | ||
"authors": "Woedenaz, Croquembouche", | ||
"license": "CC-BY-SA-3.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Nu-SCPTheme/Black-Highlighter" | ||
}, | ||
"engines": { | ||
"bun": ">=1.0.17" | ||
}, | ||
"devDependencies": { | ||
"@csstools/postcss-global-data": "^3.0.0", | ||
"autoprefixer": "^10.4.20", | ||
"caniuse-lite": "^1.0.30001651", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^9.9.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"lightningcss": "^1.26.0", | ||
"postcss": "^8.4.41", | ||
"postcss-cli": "^11.0.0", | ||
"postcss-csso": "^6.0.1", | ||
"postcss-import": "^16.1.0", | ||
"postcss-lightningcss": "^1.0.1", | ||
"postcss-mixins": "^11.0.0", | ||
"postcss-reporter": "^7.1.0", | ||
"prettier": "^3.3.3", | ||
"stylelint": "^16.8.2", | ||
"stylelint-config-property-sort-order-smacss": "^10.0.0", | ||
"stylelint-config-standard": "^36.0.1", | ||
"svgo": "^3.3.2" | ||
}, | ||
"scripts": { | ||
"build": "make", | ||
"base": "cross-env postcss $bhl_i --config build/postcss.config.mjs -o $bhl_o -w --env $bhl_env --verbose", | ||
"watch": "cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/black-highlighter.css bhl_env=development bun base & cross-env bhl_i=src/css/black-highlighter.css bhl_o=dist/css/min/black-highlighter.min.css bhl_env=production bun base & cross-env bhl_i=src/css/normalize.css bhl_o=dist/css/min/normalize.min.css bhl_env=development bun base" | ||
} | ||
} |