Skip to content

Commit

Permalink
Bump xo from 0.54.2 to 0.58.0 (#262)
Browse files Browse the repository at this point in the history
* Bump xo from 0.54.2 to 0.58.0

Bumps [xo](https://github.com/xojs/xo) from 0.54.2 to 0.58.0.
- [Release notes](https://github.com/xojs/xo/releases)
- [Commits](xojs/xo@v0.54.2...v0.58.0)

---
updated-dependencies:
- dependency-name: xo
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
  • Loading branch information
dependabot[bot] and XhmikosR committed Apr 1, 2024
1 parent d530b0e commit 0d6165b
Show file tree
Hide file tree
Showing 4 changed files with 2,042 additions and 2,343 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -67,7 +67,7 @@ const parseFileSync = (file, options) => {

const parseData = (fileName, content, options) => {
const sassFileString = stripBom(content) // Strip BOM mark
.replace(/^---$/gm, ''); // Remove (Jekyll, YAML) front-matter comments
.replaceAll(/^---$/gm, ''); // Remove (Jekyll, YAML) front-matter comments
const variables = parse(fileName, sassFileString, options.ignore);

return {
Expand Down
2 changes: 0 additions & 2 deletions lib/parse-variable.js
@@ -1,8 +1,6 @@
import { parse as scssParse } from 'postcss-scss';
/* eslint-disable n/file-extension-in-import */
import Declaration from 'postcss/lib/declaration';
import Comment from 'postcss/lib/comment';
/* eslint-enable n/file-extension-in-import */

let file = '';
let fusvEnabled = true;
Expand Down

0 comments on commit 0d6165b

Please sign in to comment.