Skip to content

Commit 37e5e28

Browse files
committed
studio: Move main into its own namespace. #367
1 parent 2248c12 commit 37e5e28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

studio/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"scripts": {
1010
"postinstall": "spago install",
1111
"start": "npm run build && concurrently --kill-others --handle-input npm:watch npm:serve",
12-
"build": "spago bundle-module --to output/index.js --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
13-
"watch": "spago bundle-module --to output/index.js --watch --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
12+
"build": "spago bundle-module --main View.Studio.Main --to output/index.js --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
13+
"watch": "spago bundle-module --main View.Studio.Main --to output/index.js --watch --purs-args --censor-codes=ImplicitImport,ImplicitQualifiedImport,HidingImport",
1414
"test": "spago test",
1515
"docs": "spago docs",
1616
"repl": "spago repl",

studio/src/Main.purs studio/src/View/Studio/Main.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Main where
1+
module View.Studio.Main where
22

33
import Prelude
44
import Effect (Effect)

0 commit comments

Comments
 (0)