oc 0.50.63 → 0.50.64-beta.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/.turbo/turbo-build.log +16 -18
- package/.turbo/turbo-lint.log +2 -2
- package/.turbo/turbo-test.log +313 -145
- package/dist/components/oc-client/_package/package.json +5 -5
- package/dist/components/oc-client/_package/server.js +1 -1
- package/dist/components/oc-client/package-lock.json +5 -5
- package/dist/components/oc-client/package.json +1 -1
- package/dist/registry/domain/repository.js +3 -3
- package/dist/registry/domain/storage-adapter.d.ts +1 -0
- package/dist/registry/domain/storage-adapter.js +9 -1
- package/dist/registry/router.js +3 -0
- package/dist/registry/routes/component-static.d.ts +3 -0
- package/dist/registry/routes/component-static.js +79 -0
- package/dist/registry/routes/helpers/component-parameter-processor.d.ts +22 -0
- package/dist/registry/routes/helpers/component-parameter-processor.js +228 -0
- package/dist/registry/routes/helpers/get-component.d.ts +1 -0
- package/dist/registry/routes/helpers/get-component.js +100 -47
- package/package.json +2 -2
- package/dist/registry/routes/helpers/get-component-retrieving-info.d.ts +0 -19
- package/dist/registry/routes/helpers/get-component-retrieving-info.js +0 -24
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
[0m[32mClient has been built and packaged[39m[0m 👍
|
|
18
|
-
⠙[1G[0K
|
|
1
|
+
|
|
2
|
+
> oc@0.50.63 prebuild
|
|
3
|
+
> rimraf dist
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> oc@0.50.63 build
|
|
7
|
+
> npm run lint && tsc && tsc --project tsconfig.types.json && node tasks/build.js
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
> oc@0.50.63 lint
|
|
11
|
+
> npx @biomejs/biome check preview src test tasks
|
|
12
|
+
|
|
13
|
+
Checked 137 files in 49ms. No fixes applied.
|
|
14
|
+
Building client
|
|
15
|
+
compiling component /Users/Ricardo.Agullo/Work/opencomponents/oc/packages/oc/src/components/oc-client/
|
|
16
|
+
Client has been built and packaged 👍
|
package/.turbo/turbo-lint.log
CHANGED