Skip to content

Commit

Permalink
chore: switch to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
zackschuster committed Sep 28, 2022
1 parent 710aa1b commit 6ce04df
Show file tree
Hide file tree
Showing 6 changed files with 731 additions and 1,371 deletions.
9 changes: 4 additions & 5 deletions Gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { writeFile, rm, mkdir } from 'node:fs/promises';
import { writeFile, readFile, rm, mkdir } from 'node:fs/promises';

import gulp from 'gulp';
import sass from 'sass';
import { rollup } from 'rollup';
import { terser } from 'rollup-plugin-terser';
import sass from 'sass';

import packageJson from './package.json' assert { type: 'json' };

const { version } = packageJson;
const { version } = JSON.parse(await readFile('./package.json', 'utf-8'));
const banner = `/** @preserve
* chessboard.js v${version}
* https://github.com/oakmac/chessboardjs/
Expand Down
Loading

0 comments on commit 6ce04df

Please sign in to comment.