Skip to content

Commit c14be98

Browse files
committed
remove shadow-ents/core.js export
1 parent cd95def commit c14be98

File tree

7 files changed

+8
-28
lines changed

7 files changed

+8
-28
lines changed

packages/shadow-ents/bundle.mjs

-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,5 @@ copyFiles([
5454
const plugins = [inlineWorkerPlugin()];
5555

5656
await build('📦', `${buildDir}/src/bundle.js`, `${distDir}/bundle.js`, {plugins, banner: makeBanner('bundle')});
57-
await build('📦', `${buildDir}/src/core.js`, `${distDir}/core.js`, {plugins, banner: makeBanner('core')});
5857

5958
console.log('✅ Bundle', packageJson.name, 'is ready!\n');

packages/shadow-ents/package.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
"default": "./dist/bundle.js",
2222
"types": "./dist/src/bundle.d.ts"
2323
},
24-
"./core.js": {
25-
"default": "./dist/core.js",
26-
"types": "./dist/src/core.d.ts"
27-
},
2824
"./shadow-ents.worker.js": {
2925
"default": "./dist/src/shadow-ents.worker.js",
3026
"types": "./dist/src/shadow-ents.worker.d.ts"
@@ -72,7 +68,6 @@
7268
"build/src/shadow-env-legacy.js",
7369
"build/src/shadow-env.js",
7470
"build/src/bundle.js",
75-
"build/src/core.js",
7671
"build/src/index.js",
7772
"dist/src/view/ComponentContext.js",
7873
"dist/src/shae-ent.js",
@@ -83,10 +78,8 @@
8378
"dist/src/shadow-env-legacy.js",
8479
"dist/src/shadow-env.js",
8580
"dist/src/bundle.js",
86-
"dist/src/core.js",
8781
"dist/src/index.js",
88-
"dist/bundle.js",
89-
"dist/core.js"
82+
"dist/bundle.js"
9083
],
9184
"scripts": {
9285
"tsc": "pnpm exec tsc",

packages/shadow-ents/package.override.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"sideEffects": [
33
"bundle.js",
4-
"core.js",
54
"src/bundle.js",
6-
"src/core.js",
75
"src/index.js",
86
"src/view/ComponentContext.js",
97
"src/shae-ent.js",

packages/shadow-ents/src/core.ts

-14
This file was deleted.

packages/shadow-ents/src/elements/ShadowEnvElement.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import {GlobalNS} from '../constants.js';
2-
import {ComponentContext, LocalShadowObjectEnv, RemoteWorkerEnv, ShadowEnv} from '../core.js';
2+
import {ComponentContext} from '../view/ComponentContext.js';
3+
import {LocalShadowObjectEnv} from '../view/LocalShadowObjectEnv.js';
4+
import {RemoteWorkerEnv} from '../view/RemoteWorkerEnv.js';
5+
import {ShadowEnv} from '../view/ShadowEnv.js';
36
import {ShadowEntityElement} from './ShadowEntityElement.js';
47
import {ShadowElementType} from './constants.js';
58

packages/shadow-ents/src/view/IShadowObjectEnvProxy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {MessageToViewEvent} from '../core.js';
1+
import type {MessageToViewEvent} from '../shadow-objects.js';
22
import type {ChangeTrailType} from '../types.js';
33

44
export interface IShadowObjectEnvProxy {

packages/shadow-ents/src/view/ShadowEnv.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import {Priority, eventize, type EventizeApi} from '@spearwolf/eventize';
22
import {createEffect, createSignal, type SignalReader} from '@spearwolf/signalize';
33
import {signal, signalReader} from '@spearwolf/signalize/decorators';
4-
import {type ChangeTrailType, type MessageToViewEvent, type NamespaceType} from '../core.js';
4+
import type {MessageToViewEvent} from '../shadow-objects.js';
5+
import type {ChangeTrailType, NamespaceType} from '../types.js';
56
import {ComponentContext} from './ComponentContext.js';
67
import type {IShadowObjectEnvProxy} from './IShadowObjectEnvProxy.js';
78

0 commit comments

Comments
 (0)