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 +11 -0
- package/extend.d.ts +1 -0
- package/extend.js +1 -0
- package/index.js +1 -0
- package/package.json +12 -9
- package/register.d.ts +1 -0
- package/register.js +1 -0
- package/dist/index.d.ts +0 -2
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +0 -1
- /package/{src/index.ts → index.d.ts} +0 -0
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.
|
|
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
|
-
"
|
|
18
|
-
"
|
|
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": "
|
|
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.
|
|
30
|
+
"@modular-component/core": "0.3.0"
|
|
28
31
|
},
|
|
29
32
|
"devDependencies": {
|
|
30
|
-
"typescript": "^5.
|
|
33
|
+
"typescript": "^5.9.3"
|
|
31
34
|
},
|
|
32
|
-
"main": "
|
|
33
|
-
"types": "
|
|
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
package/dist/index.d.ts.map
DELETED
|
@@ -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
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
|