Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Nov 15, 2023
1 parent ff53abe commit 5963316
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _agstate/agoric-servers/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dapp-fungible-faucet-agservers",
"name": "@agoric/dapp-fungible-faucet-agservers",
"version": "0.0.1",
"description": "Agoric server instances for dapp",
"private": true,
Expand Down
5 changes: 3 additions & 2 deletions api/deploy.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// @ts-check

/* global process */
/* eslint-env node */
// Agoric Dapp api deployment script

import fs from 'fs';
import { E } from '@endo/eventual-send';
import '@agoric/zoe/exported.js';

import installationConstants from "@agoric/dapp-fungible-faucet-ui/public/conf/installationConstants.js";
// eslint-disable-next-line import/no-relative-packages
import installationConstants from "../ui/public/conf/installationConstants.js";

// deploy.js runs in an ephemeral Node.js outside of swingset. The
// spawner runs within ag-solo, so is persistent. Once the deploy.js
Expand Down
1 change: 0 additions & 1 deletion api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"dependencies": {
"@endo/eventual-send": "^0.15.5",
"@endo/marshal": "^0.6.9",
"@agoric/dapp-fungible-faucet-ui": "^0.0.1",
"@agoric/zoe": "getting-started-dev"
},
"prettier": {
Expand Down
1 change: 1 addition & 0 deletions ui/public/src/install-ses-lockdown.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global hardenIntrinsics */
/* eslint-disable import/no-extraneous-dependencies */
import './pre-lockdown.js';
import '@endo/eventual-send/shim'; // adds support needed by E
Expand Down
4 changes: 3 additions & 1 deletion ui/public/src/pre-lockdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import 'ses/dist/ses.umd';
/* eslint-env node */
/* global repairIntrinsics */
import 'ses/dist/ses.umd.js';
// adds lockdown, harden, and Compartment
const errorTaming = process.env.NODE_ENV === 'development' ? 'unsafe' : 'safe';

Expand Down

0 comments on commit 5963316

Please sign in to comment.