From d7436c22cef0cba74e1aba27b45909ad929704d6 Mon Sep 17 00:00:00 2001 From: Shiv Bhonde Date: Sun, 7 Jul 2024 14:09:23 +0900 Subject: [PATCH] move rollup config inside dev folder --- package.json | 2 +- rollup.dev.config.js => src/dev/rollup.dev.config.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename rollup.dev.config.js => src/dev/rollup.dev.config.js (100%) diff --git a/package.json b/package.json index 4e4b8b92e..49ee1b3e7 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "bin": "bin/create-dapp-se2.js", "scripts": { "build": "rollup -c rollup.config.js", - "build:dev": "yarn build && rollup -c rollup.dev.config.js", + "build:dev": "yarn build && rollup -c src/dev/rollup.dev.config.js", "create-extension": "node dist/create-extension/create-extension.js", "dev": "rollup -c rollup.config.js --watch", "cli": "node bin/create-dapp-se2.js", diff --git a/rollup.dev.config.js b/src/dev/rollup.dev.config.js similarity index 100% rename from rollup.dev.config.js rename to src/dev/rollup.dev.config.js