oc 0.50.48 → 0.50.49

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.
Files changed (51) hide show
  1. package/.turbo/turbo-build.log +18 -0
  2. package/.turbo/turbo-lint.log +5 -0
  3. package/.turbo/turbo-test-silent.log +43 -0
  4. package/.turbo/turbo-test.log +1612 -0
  5. package/CHANGELOG.md +385 -13
  6. package/README.md +4 -4
  7. package/dist/cli/domain/registry.js +5 -5
  8. package/dist/cli/facade/dev.js +1 -1
  9. package/dist/cli/facade/publish.js +1 -1
  10. package/dist/components/oc-client/_package/package.json +4 -4
  11. package/dist/components/oc-client/_package/server.js +1 -1
  12. package/dist/components/oc-client/_package/src/oc-client.js +7 -133
  13. package/dist/components/oc-client/_package/src/oc-client.min.js +1 -15
  14. package/dist/components/oc-client/_package/src/oc-client.min.map +1 -1
  15. package/dist/components/oc-client/package.json +1 -1
  16. package/dist/components/oc-client/src/oc-client.js +7 -133
  17. package/dist/components/oc-client/src/oc-client.min.js +1 -15
  18. package/dist/components/oc-client/src/oc-client.min.map +1 -1
  19. package/dist/registry/domain/components-details.js +44 -10
  20. package/dist/registry/domain/nested-renderer.js +1 -1
  21. package/dist/registry/domain/repository.js +15 -4
  22. package/dist/registry/domain/url-builder.js +1 -1
  23. package/dist/registry/domain/validators/registry-configuration.js +3 -4
  24. package/dist/registry/routes/component-info.js +1 -1
  25. package/dist/registry/routes/helpers/format-error-stack.js +0 -31
  26. package/dist/registry/routes/helpers/get-component.js +37 -26
  27. package/dist/registry/routes/index.js +1 -1
  28. package/dist/registry/routes/validate.js +1 -1
  29. package/dist/registry/views/partials/components-list.js +1 -1
  30. package/dist/registry/views/static/index.d.ts +1 -1
  31. package/dist/registry/views/static/index.js +39 -5
  32. package/dist/registry/views/static/style.d.ts +1 -1
  33. package/dist/registry/views/static/style.js +20 -16
  34. package/dist/utils/clean-require.js +1 -1
  35. package/dist/utils/module-exists.js +1 -1
  36. package/package.json +121 -128
  37. package/tsconfig.json +33 -33
  38. package/.editorconfig +0 -9
  39. package/.github/ISSUE_TEMPLATE.md +0 -29
  40. package/.github/PULL_REQUEST_TEMPLATE.md +0 -21
  41. package/.github/workflows/node.js.yml +0 -29
  42. package/.nvmrc +0 -1
  43. package/.prettierrc +0 -8
  44. package/.yarnrc.yml +0 -1
  45. package/AGENTS.md +0 -58
  46. package/CONTRIBUTING.md +0 -68
  47. package/LICENSE +0 -20
  48. package/biome.json +0 -52
  49. package/lefthook.yml +0 -5
  50. package/logo-type.png +0 -0
  51. package/logo.png +0 -0
@@ -0,0 +1,18 @@
1
+
2
+ 
3
+ > oc@0.50.49 prebuild
4
+ > rimraf dist
5
+
6
+ ⠙
7
+ > oc@0.50.49 build
8
+ > npm run lint && tsc && node tasks/build.js
9
+
10
+ ⠙
11
+ > oc@0.50.49 lint
12
+ > npx @biomejs/biome check preview src test tasks
13
+
14
+ ⠙⠹⠸⠼Checked 128 files in 43ms. No fixes applied.
15
+ ⠙⠙Building client
16
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/src/components/oc-client/
17
+ Client has been built and packaged 👍
18
+ ⠙
@@ -0,0 +1,5 @@
1
+
2
+ > oc@0.50.47 lint
3
+ > npx @biomejs/biome check preview src test tasks
4
+
5
+ Checked 128 files in 33ms. No fixes applied.
@@ -0,0 +1,43 @@
1
+
2
+ > oc@0.50.47 test-silent
3
+ > npm run build && node tasks/mochaTest.js --silent
4
+
5
+
6
+ > oc@0.50.47 prebuild
7
+ > rimraf dist
8
+
9
+
10
+ > oc@0.50.47 build
11
+ > npm run lint && tsc && node tasks/build.js
12
+
13
+
14
+ > oc@0.50.47 lint
15
+ > npx @biomejs/biome check preview src test tasks
16
+
17
+ Checked 128 files in 28ms. No fixes applied.
18
+ Building client
19
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/src/components/oc-client/
20
+ Client has been built and packaged 👍
21
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/circular-json-error
22
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/container-with-multiple-nested
23
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/container-with-nested
24
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/empty
25
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/hello-world
26
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/hello-world-custom-cookies
27
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/hello-world-custom-headers
28
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/jade-filters
29
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/language
30
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/lodash-component
31
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/no-containers
32
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/welcome
33
+ compiling component /Users/Ricardo.Agullo/Work/oc/packages/oc/test/fixtures/components/welcome-with-optional-parameters
34
+ Test components packaged 👍
35
+
36
+ (node:77761) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
37
+ (Use `node --trace-deprecation ...` to show where the warning was created)
38
+
39
+ (node:77761) [DEP0097] DeprecationWarning: Using a domain property in MakeCallback is deprecated. Use the async_context variant of MakeCallback or the AsyncResource class instead. (Triggered by calling processImmediate on process.)
40
+
41
+
42
+ 838 passing (8s)
43
+