From c23e8d23cf5c1a21e6c799adc66cb22e9922cac6 Mon Sep 17 00:00:00 2001 From: RenatoPerotti Date: Mon, 9 Oct 2023 02:10:14 +0200 Subject: [PATCH] Update package.json the index.js file is missing, I suppose the one in the test directory (./test/index.spec.js) is the one we need!? --- examples/helia-101/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/helia-101/package.json b/examples/helia-101/package.json index e1fb345c..18c78ee8 100644 --- a/examples/helia-101/package.json +++ b/examples/helia-101/package.json @@ -5,9 +5,9 @@ "type": "module", "description": "Getting started with Helia", "license": "MIT", - "main": "index.js", + "main": "./test/index.spec.js", "scripts": { - "start": "node index.js", + "start": "node ./test/index.spec.js", "serve": "npm run start", "test": "test-node-example test/*" },