-
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.
Merge pull request #233 from Nu-SCPTheme/bun-migration
Bun migration
- Loading branch information
Showing
13 changed files
with
75 additions
and
101 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
defaults and not op_mini all or iOS <= 14 |
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,4 +1,4 @@ | ||
# Treat certain files as binary | ||
*.min.css binary linguist-generated | ||
pnpm-lock.yaml binary linguist-generated | ||
bun.lockb binary linguist-generated | ||
/scp-test-page binary linguist-generated |
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ dist/ | |
# NPM | ||
node_modules/ | ||
package-lock.json | ||
pnpm-lock.yaml | ||
|
||
# Misc | ||
.DS_Store | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ dist/ | |
|
||
# NPM | ||
node_modules/ | ||
pnpm-lock.yaml | ||
bun.lockb | ||
|
||
# Misc | ||
.DS_Store | ||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ normalize.css | |
|
||
# NPM | ||
node_modules/ | ||
pnpm-lock.yaml | ||
bun.lockb | ||
|
||
# Misc | ||
.DS_Store | ||
|
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
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
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,44 +1,42 @@ | ||
{ | ||
"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": { | ||
"node": ">=19", | ||
"pnpm": ">=7" | ||
}, | ||
"devDependencies": { | ||
"@csstools/postcss-global-data": "^2.0.0", | ||
"autoprefixer": "^10.4.13", | ||
"eslint": "^8.34.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"lightningcss": "^1.19.0", | ||
"node": "^21.0.0", | ||
"postcss": "^8.4.21", | ||
"postcss-cli": "^11.0.0", | ||
"postcss-csso": "^6.0.1", | ||
"postcss-import": "^15.1.0", | ||
"postcss-lightningcss": "^1.0.0", | ||
"postcss-mixins": "^9.0.4", | ||
"postcss-preset-env": "^9.0.0", | ||
"postcss-reporter": "^7.0.5", | ||
"postcss-url": "^10.1.3", | ||
"prettier": "^3.0.0", | ||
"stylelint": "^16.0.2", | ||
"stylelint-config-property-sort-order-smacss": "^10.0.0", | ||
"stylelint-config-standard": "^35.0.0", | ||
"svgo": "^3.0.2" | ||
}, | ||
"scripts": { | ||
"build": "make", | ||
"base": "postcss $npm_config_bhl_i --config build/postcss.config.js -o $npm_config_bhl_o -w --env $npm_config_bhl_env --verbose", | ||
"watch": "pnpm --bhl-i=src/css/black-highlighter.css --bhl-o=dist/css/black-highlighter.css --bhl-env=development base & pnpm --bhl-i=src/css/black-highlighter.css --bhl-o=dist/css/min/black-highlighter.min.css --bhl-env=production base & pnpm --bhl-i=src/css/normalize.css --bhl-o=dist/css/min/normalize.min.css --bhl-env=development base" | ||
}, | ||
"browserslist": "defaults and not op_mini all or iOS <= 14" | ||
"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": "^2.0.0", | ||
"autoprefixer": "^10.4.13", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.34.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"lightningcss": "^1.19.0", | ||
"postcss": "^8.4.21", | ||
"postcss-cli": "^11.0.0", | ||
"postcss-csso": "^6.0.1", | ||
"postcss-import": "^15.1.0", | ||
"postcss-lightningcss": "^1.0.0", | ||
"postcss-mixins": "^9.0.4", | ||
"postcss-preset-env": "^9.0.0", | ||
"postcss-reporter": "^7.0.5", | ||
"postcss-url": "^10.1.3", | ||
"prettier": "^3.0.0", | ||
"stylelint": "^16.0.2", | ||
"stylelint-config-property-sort-order-smacss": "^10.0.0", | ||
"stylelint-config-standard": "^35.0.0", | ||
"svgo": "^3.0.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" | ||
} | ||
} |