modular-component 0.2.3 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # modular-component
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1784a2b: Add a clean way to extend the ModularComponent API with new dedicated stage functions
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [1784a2b]
12
+ - @modular-component/core@0.3.0
13
+
3
14
  ## 0.2.3
4
15
 
5
16
  ### Patch Changes
package/extend.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from '@modular-component/core/extend'
package/extend.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@modular-component/core/extend.js'
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@modular-component/core'
package/package.json CHANGED
@@ -7,28 +7,31 @@
7
7
  "Factory",
8
8
  "Test"
9
9
  ],
10
- "version": "0.2.3",
10
+ "version": "0.3.0",
11
11
  "type": "module",
12
12
  "license": "MIT",
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
16
  "files": [
17
- "src",
18
- "dist",
17
+ "index.js",
18
+ "index.d.ts",
19
+ "extend.js",
20
+ "extend.d.ts",
21
+ "register.js",
22
+ "register.d.ts",
19
23
  "CHANGELOG.md"
20
24
  ],
21
25
  "scripts": {
22
- "build": "yarn build:self",
23
- "build:self": "tsc",
26
+ "build:self": "tsc --noEmit index extend register",
24
27
  "license": "cp ../../LICENSE ./LICENSE"
25
28
  },
26
29
  "dependencies": {
27
- "@modular-component/core": "0.2.3"
30
+ "@modular-component/core": "0.3.0"
28
31
  },
29
32
  "devDependencies": {
30
- "typescript": "^5.2.2"
33
+ "typescript": "^5.9.3"
31
34
  },
32
- "main": "dist/index.js",
33
- "types": "dist/index.d.ts"
35
+ "main": "index.js",
36
+ "types": "index.d.ts"
34
37
  }
package/register.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from '@modular-component/core/register'
package/register.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@modular-component/core/register.js'
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from '@modular-component/core';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA"}
package/dist/index.js DELETED
@@ -1,2 +0,0 @@
1
- export * from '@modular-component/core';
2
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA"}
File without changes