Skip to content

Commit 969b5a1

Browse files
committed
chore: import/no-anonymous-default-export
1 parent aac3254 commit 969b5a1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createPlugins } from "rollup-plugin-atomic"
22

33
const plugins = createPlugins([["ts", { tsconfig: "./src/tsconfig.json" }, true], "js", "json"])
44

5-
export default [
5+
const RollupConfig = [
66
{
77
input: "src/main.ts",
88
output: [
@@ -17,3 +17,4 @@ export default [
1717
plugins,
1818
},
1919
]
20+
export default RollupConfig

spec/benchmark-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
describe("Benchmark", () => {
22
// This number doesn't match what timecope gives, but shows the trend
3-
it("Activation Benchmark", async function () {
3+
it("Activation Benchmark", function () {
44
jasmine.attachToDOM(atom.views.getView(atom.workspace))
55
atom.packages.triggerDeferredActivationHooks()
66
// Activate activation hook

0 commit comments

Comments
 (0)