Skip to content

Commit

Permalink
Project update. [p][robotic]
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswrks committed Feb 4, 2024
1 parent d8748e8 commit 4de5f70
Show file tree
Hide file tree
Showing 14 changed files with 231 additions and 300 deletions.
12 changes: 6 additions & 6 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

[production]
node >= 20.9.0
and_chr >= 92
chrome >= 92
and_ff >= 90
android >= 120
android >= 121
edge >= 92
samsung >= 16.0
safari >= 15.4
Expand All @@ -48,7 +48,7 @@ node >= 20.9.0
and_chr >= 92
chrome >= 92
and_ff >= 90
android >= 120
android >= 121
edge >= 92
samsung >= 16.0
safari >= 15.4
Expand All @@ -72,7 +72,7 @@ node >= 20.9.0
and_chr >= 92
chrome >= 92
and_ff >= 90
android >= 120
android >= 121
edge >= 92
samsung >= 16.0
safari >= 15.4
Expand Down Expand Up @@ -107,7 +107,7 @@ not dead
and_chr >= 92
chrome >= 92
and_ff >= 90
android >= 120
android >= 121
edge >= 92
samsung >= 16.0
safari >= 15.4
Expand All @@ -130,7 +130,7 @@ not dead
and_chr >= 92
chrome >= 92
and_ff >= 90
android >= 120
android >= 121
edge >= 92
samsung >= 16.0
safari >= 15.4
Expand Down
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Default

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Locals

Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Packages

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @note This entire file will be updated automatically.
* @note Instead of editing here, please review `./settings.mjs`.
*
* Last generated using `./settings.mjs` Feb 1, 2024 5:40 AM UTC.
* Last generated using `./settings.mjs` Feb 4, 2024 4:59 AM UTC.
*/
{
"editor.formatOnType": false,
Expand Down
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Generated data.
# <generated:start>

# Last generated Feb 1, 2024 5:40 AM UTC.
# Last generated Feb 4, 2024 4:59 AM UTC.

# Locals

Expand Down
4 changes: 2 additions & 2 deletions dev/.files/bin/includes/utilities.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1249,13 +1249,13 @@ export default class u {

u.log($chalk.gray('Adding `' + team + '` team to npmjs package with `' + permission + '` permission.'));
if (!opts.dryRun) {
await u.spawn('npm', ['access', 'grant', permission, org + ':' + team], { quiet: true });
await u.spawn('npm', ['access', 'grant', permission, org + ':' + team, pkgName], { quiet: true });
}
}
for (const [team] of Object.entries(teamsToDelete)) {
u.log($chalk.gray('Deleting `' + team + '` (unused) from npmjs package.'));
if (!opts.dryRun) {
await u.spawn('npm', ['access', 'revoke', org + ':' + team], { quiet: true }).catch(() => null);
await u.spawn('npm', ['access', 'revoke', org + ':' + team, pkgName], { quiet: true }).catch(() => null);
}
}
if (!opts.dryRun) {
Expand Down
2 changes: 0 additions & 2 deletions dev/.files/tailwind/layers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
input::placeholder,
textarea::placeholder,
select:has(> :checked[data-placeholder]) {
@apply italic;

color: rgb(from rgb(var(--colors-color-basic-fg)) r g b / calc(alpha - 0.5));
}

Expand Down
Loading

0 comments on commit 4de5f70

Please sign in to comment.