Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rsefer committed Apr 2, 2024
1 parent 0c2d64f commit e40f336
Show file tree
Hide file tree
Showing 5 changed files with 11,641 additions and 6,518 deletions.
19 changes: 11 additions & 8 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
{
"plugins": [
"@stylistic/stylelint-plugin"
],
"rules": {
"indentation": "tab",
"max-empty-lines": 1,
"@stylistic/indentation": "tab",
"@stylistic/max-empty-lines": 1,
"rule-empty-line-before": [
"always",
{
"ignore": [ "after-comment" ]
}
],
"block-opening-brace-space-before": "always-multi-line",
"block-opening-brace-newline-after": "always-multi-line",
"no-empty-first-line": true,
"selector-max-empty-lines": 0,
"@stylistic/block-opening-brace-space-before": "always-multi-line",
"@stylistic/block-opening-brace-newline-after": "always-multi-line",
"@stylistic/no-empty-first-line": true,
"@stylistic/selector-max-empty-lines": 0,
"color-function-notation": "modern",
"color-hex-length": "long",
"color-no-invalid-hex": true,
"color-named": "never",
"shorthand-property-no-redundant-values": true,
"number-leading-zero": "always",
"no-eol-whitespace": true
"@stylistic/number-leading-zero": "always",
"@stylistic/no-eol-whitespace": true
}
}
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import project from './lib/project.js';
import parseArgs from 'minimist';
const argv = parseArgs(process.argv.slice(2));
import chokidar from 'chokidar';
import glob from 'glob';
import { glob } from 'glob';

import bustCache from './lib/bustCache.js';
import { buildSass, buildSassTheme } from './lib/style.js';
Expand Down
2 changes: 1 addition & 1 deletion lib/scripts.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'path';
import project from '../lib/project.js';
import log from './logging.js';
import esbuild from 'esbuild';
import * as esbuild from 'esbuild';
import { ESLint } from 'eslint';
import { readFile } from 'fs/promises';

Expand Down
Loading

0 comments on commit e40f336

Please sign in to comment.