-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into task/github-actions
- Loading branch information
Showing
5 changed files
with
1,091 additions
and
6 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 |
---|---|---|
@@ -1 +1 @@ | ||
18.17.0 | ||
18.18.0 |
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,17 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import prettier from "eslint-plugin-prettier"; | ||
import prettierConfig from "eslint-plugin-prettier/recommended"; | ||
|
||
export default [ | ||
{ | ||
languageOptions: { | ||
globals: globals.browser, | ||
}, | ||
plugins: { | ||
prettier, | ||
}, | ||
}, | ||
pluginJs.configs.recommended, | ||
prettierConfig, | ||
]; |
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,8 @@ | ||
import tokensFromJson from './dist/json/variables.json' assert { type: "json" }; | ||
import { createRequire } from "node:module"; | ||
|
||
const require = createRequire(import.meta.url); | ||
|
||
const tokensFromJson = require("./dist/json/variables.json"); | ||
|
||
export const tokens = tokensFromJson; | ||
// export const icons = someObjectContainingTheIcons |
Oops, something went wrong.