Skip to content

Commit

Permalink
Fix json import syntax deprecation for Deno
Browse files Browse the repository at this point in the history
  • Loading branch information
2TspSalt committed Sep 22, 2024
1 parent dd7f5cf commit 60c14b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/deno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { ICache } from '../types/Cache.js';
import { Platform } from '../utils/Utils.js';
import evaluate from './jsruntime/jinter.js';
import sha1Hash from './polyfills/web-crypto.js';
import package_json from '../../package.json' assert { type: 'json' };
import package_json from '../../package.json' with { type: 'json' };

// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
Expand Down

0 comments on commit 60c14b7

Please sign in to comment.