diff --git a/examples/netlify/package.json b/examples/netlify/package.json index 6ecc5cf..26076fc 100644 --- a/examples/netlify/package.json +++ b/examples/netlify/package.json @@ -1,6 +1,7 @@ { "name": "netlify-example", "version": "0.0.1", + "private": true, "type": "module", "scripts": { "build": "marko-run build", diff --git a/examples/node-express/package.json b/examples/node-express/package.json index 0d8aa44..d206683 100644 --- a/examples/node-express/package.json +++ b/examples/node-express/package.json @@ -1,6 +1,7 @@ { "name": "node-express-example", "version": "0.0.1", + "private": true, "type": "module", "scripts": { "build": "marko-run build src/index.ts", diff --git a/examples/static/package.json b/examples/static/package.json index 05fa84d..3cc0d8a 100644 --- a/examples/static/package.json +++ b/examples/static/package.json @@ -1,6 +1,7 @@ { "name": "static-example", "version": "0.0.1", + "private": true, "type": "module", "scripts": { "build": "marko-run build", diff --git a/examples/zero-config/package.json b/examples/zero-config/package.json index 6e9cbb9..48db5eb 100644 --- a/examples/zero-config/package.json +++ b/examples/zero-config/package.json @@ -1,6 +1,7 @@ { "name": "zero-config-example", "version": "0.0.1", + "private": true, "type": "module", "scripts": { "build": "marko-run build", diff --git a/package.json b/package.json index 2b2fafa..8df77fe 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "private": true, + "type": "module", "workspaces": [ "./packages/*", "./packages/adapters/*",