@angular-devkit/schematics 15.1.0-next.3 → 15.1.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.
Files changed (133) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +0 -0
  3. package/collection-schema.json +0 -0
  4. package/package.json +8 -8
  5. package/src/engine/engine.d.ts +0 -1
  6. package/src/engine/engine.js +1 -0
  7. package/src/engine/index.d.ts +0 -0
  8. package/src/engine/index.js +1 -0
  9. package/src/engine/interface.d.ts +9 -10
  10. package/src/engine/interface.js +1 -0
  11. package/src/engine/schematic.d.ts +0 -0
  12. package/src/engine/schematic.js +1 -0
  13. package/src/exception/exception.d.ts +0 -0
  14. package/src/exception/exception.js +1 -0
  15. package/src/formats/format-validator.d.ts +0 -0
  16. package/src/formats/format-validator.js +1 -0
  17. package/src/formats/html-selector.d.ts +0 -0
  18. package/src/formats/html-selector.js +1 -0
  19. package/src/formats/index.d.ts +0 -0
  20. package/src/formats/index.js +1 -0
  21. package/src/formats/path.d.ts +0 -0
  22. package/src/formats/path.js +1 -0
  23. package/src/index.d.ts +1 -1
  24. package/src/index.js +1 -0
  25. package/src/rules/base.d.ts +0 -0
  26. package/src/rules/base.js +1 -0
  27. package/src/rules/call.d.ts +0 -0
  28. package/src/rules/call.js +1 -0
  29. package/src/rules/move.d.ts +0 -0
  30. package/src/rules/move.js +1 -0
  31. package/src/rules/random.d.ts +0 -0
  32. package/src/rules/random.js +1 -0
  33. package/src/rules/schematic.d.ts +0 -0
  34. package/src/rules/schematic.js +1 -0
  35. package/src/rules/template.d.ts +3 -3
  36. package/src/rules/template.js +1 -0
  37. package/src/rules/url.d.ts +0 -0
  38. package/src/rules/url.js +1 -0
  39. package/src/sink/dryrun.d.ts +1 -1
  40. package/src/sink/dryrun.js +1 -0
  41. package/src/sink/host.d.ts +0 -0
  42. package/src/sink/host.js +1 -0
  43. package/src/sink/sink.d.ts +0 -0
  44. package/src/sink/sink.js +1 -0
  45. package/src/tree/action.d.ts +1 -1
  46. package/src/tree/action.js +1 -0
  47. package/src/tree/delegate.d.ts +0 -0
  48. package/src/tree/delegate.js +1 -0
  49. package/src/tree/empty.d.ts +0 -0
  50. package/src/tree/empty.js +1 -0
  51. package/src/tree/entry.d.ts +0 -0
  52. package/src/tree/entry.js +1 -0
  53. package/src/tree/host-tree.d.ts +0 -0
  54. package/src/tree/host-tree.js +9 -8
  55. package/src/tree/interface.d.ts +1 -1
  56. package/src/tree/interface.js +1 -0
  57. package/src/tree/null.d.ts +0 -0
  58. package/src/tree/null.js +4 -3
  59. package/src/tree/recorder.d.ts +0 -0
  60. package/src/tree/recorder.js +1 -0
  61. package/src/tree/scoped.d.ts +0 -0
  62. package/src/tree/scoped.js +1 -0
  63. package/src/tree/static.d.ts +0 -0
  64. package/src/tree/static.js +1 -0
  65. package/src/utility/environment-options.d.ts +0 -0
  66. package/src/utility/environment-options.js +1 -0
  67. package/src/utility/linked-list.d.ts +0 -0
  68. package/src/utility/linked-list.js +1 -0
  69. package/src/utility/update-buffer.d.ts +0 -0
  70. package/src/utility/update-buffer.js +1 -0
  71. package/src/workflow/base.d.ts +0 -0
  72. package/src/workflow/base.js +1 -0
  73. package/src/workflow/index.d.ts +0 -0
  74. package/src/workflow/index.js +1 -0
  75. package/src/workflow/interface.d.ts +0 -0
  76. package/src/workflow/interface.js +1 -0
  77. package/tasks/index.d.ts +0 -0
  78. package/tasks/index.js +1 -0
  79. package/tasks/node/index.d.ts +0 -0
  80. package/tasks/node/index.js +1 -0
  81. package/tasks/package-manager/executor.d.ts +0 -0
  82. package/tasks/package-manager/executor.js +1 -0
  83. package/tasks/package-manager/install-task.d.ts +0 -0
  84. package/tasks/package-manager/install-task.js +1 -0
  85. package/tasks/package-manager/link-task.d.ts +0 -0
  86. package/tasks/package-manager/link-task.js +1 -0
  87. package/tasks/package-manager/options.d.ts +0 -0
  88. package/tasks/package-manager/options.js +1 -0
  89. package/tasks/package.json +0 -0
  90. package/tasks/repo-init/executor.d.ts +0 -0
  91. package/tasks/repo-init/executor.js +2 -1
  92. package/tasks/repo-init/init-task.d.ts +0 -0
  93. package/tasks/repo-init/init-task.js +1 -0
  94. package/tasks/repo-init/options.d.ts +0 -0
  95. package/tasks/repo-init/options.js +1 -0
  96. package/tasks/run-schematic/executor.d.ts +0 -0
  97. package/tasks/run-schematic/executor.js +1 -0
  98. package/tasks/run-schematic/options.d.ts +0 -0
  99. package/tasks/run-schematic/options.js +1 -0
  100. package/tasks/run-schematic/task.d.ts +0 -0
  101. package/tasks/run-schematic/task.js +1 -0
  102. package/testing/index.d.ts +0 -0
  103. package/testing/index.js +1 -0
  104. package/testing/package.json +0 -0
  105. package/testing/schematic-test-runner.d.ts +0 -0
  106. package/testing/schematic-test-runner.js +1 -0
  107. package/tools/description.d.ts +0 -0
  108. package/tools/description.js +1 -0
  109. package/tools/export-ref.d.ts +0 -0
  110. package/tools/export-ref.js +1 -0
  111. package/tools/fallback-engine-host.d.ts +3 -4
  112. package/tools/fallback-engine-host.js +1 -0
  113. package/tools/file-system-engine-host-base.d.ts +0 -1
  114. package/tools/file-system-engine-host-base.js +1 -0
  115. package/tools/file-system-engine-host.d.ts +0 -0
  116. package/tools/file-system-engine-host.js +5 -3
  117. package/tools/file-system-utility.d.ts +0 -0
  118. package/tools/file-system-utility.js +1 -0
  119. package/tools/index.d.ts +0 -0
  120. package/tools/index.js +1 -0
  121. package/tools/node-module-engine-host.d.ts +0 -0
  122. package/tools/node-module-engine-host.js +1 -0
  123. package/tools/node-modules-test-engine-host.d.ts +0 -0
  124. package/tools/node-modules-test-engine-host.js +1 -0
  125. package/tools/package.json +0 -0
  126. package/tools/schema-option-transform.d.ts +0 -0
  127. package/tools/schema-option-transform.js +1 -0
  128. package/tools/workflow/node-workflow.d.ts +0 -0
  129. package/tools/workflow/node-workflow.js +1 -0
  130. package/tasks/BUILD.bazel +0 -33
  131. package/tasks/node/BUILD.bazel +0 -30
  132. package/testing/BUILD.bazel +0 -28
  133. package/tools/BUILD.bazel +0 -78
@@ -1,30 +0,0 @@
1
- load("//tools:defaults.bzl", "ts_library")
2
-
3
- # Copyright Google Inc. All Rights Reserved.
4
- #
5
- # Use of this source code is governed by an MIT-style license that can be
6
- # found in the LICENSE file at https://angular.io/license
7
- licenses(["notice"])
8
-
9
- package(default_visibility = ["//visibility:public"])
10
-
11
- ts_library(
12
- name = "node",
13
- srcs = glob(
14
- include = ["**/*.ts"],
15
- exclude = [
16
- "**/*_spec.ts",
17
- "**/*_benchmark.ts",
18
- ],
19
- ),
20
- module_name = "@angular-devkit/schematics/tasks/node",
21
- module_root = "index.d.ts",
22
- deps = [
23
- "//packages/angular_devkit/core",
24
- "//packages/angular_devkit/core/node",
25
- "//packages/angular_devkit/schematics",
26
- "//packages/angular_devkit/schematics/tasks",
27
- "@npm//@types/node",
28
- "@npm//rxjs",
29
- ],
30
- )
@@ -1,28 +0,0 @@
1
- load("//tools:defaults.bzl", "ts_library")
2
-
3
- # Copyright Google Inc. All Rights Reserved.
4
- #
5
- # Use of this source code is governed by an MIT-style license that can be
6
- # found in the LICENSE file at https://angular.io/license
7
- licenses(["notice"])
8
-
9
- package(default_visibility = ["//visibility:public"])
10
-
11
- ts_library(
12
- name = "testing",
13
- srcs = glob(
14
- include = ["**/*.ts"],
15
- ),
16
- data = ["package.json"],
17
- module_name = "@angular-devkit/schematics/testing",
18
- module_root = "index.d.ts",
19
- deps = [
20
- "//packages/angular_devkit/core",
21
- "//packages/angular_devkit/schematics",
22
- "//packages/angular_devkit/schematics/tasks",
23
- "//packages/angular_devkit/schematics/tasks/node",
24
- "//packages/angular_devkit/schematics/tools",
25
- "@npm//@types/node",
26
- "@npm//rxjs",
27
- ],
28
- )
package/tools/BUILD.bazel DELETED
@@ -1,78 +0,0 @@
1
- load("@npm//@bazel/jasmine:index.bzl", "jasmine_node_test")
2
- load("//tools:defaults.bzl", "ts_library")
3
- load("//tools:toolchain_info.bzl", "TOOLCHAINS_NAMES", "TOOLCHAINS_VERSIONS")
4
-
5
- # Copyright Google Inc. All Rights Reserved.
6
- #
7
- # Use of this source code is governed by an MIT-style license that can be
8
- # found in the LICENSE file at https://angular.io/license
9
- licenses(["notice"])
10
-
11
- package(default_visibility = ["//visibility:public"])
12
-
13
- ts_library(
14
- name = "tools",
15
- srcs = glob(
16
- include = ["**/*.ts"],
17
- exclude = [
18
- "**/*_spec.ts",
19
- "**/*_benchmark.ts",
20
- "test/**/*.ts",
21
- ],
22
- ),
23
- data = ["package.json"],
24
- module_name = "@angular-devkit/schematics/tools",
25
- module_root = "index.d.ts",
26
- deps = [
27
- "//packages/angular_devkit/core",
28
- "//packages/angular_devkit/core/node",
29
- "//packages/angular_devkit/schematics",
30
- "//packages/angular_devkit/schematics/tasks",
31
- "//packages/angular_devkit/schematics/tasks/node",
32
- "@npm//@types/node",
33
- "@npm//jsonc-parser",
34
- "@npm//rxjs",
35
- ],
36
- )
37
-
38
- # @external_begin
39
-
40
- ts_library(
41
- name = "tools_test_lib",
42
- testonly = True,
43
- srcs = glob(
44
- include = [
45
- "**/*_spec.ts",
46
- "test/**/*.ts",
47
- ],
48
- ),
49
- deps = [
50
- ":tools",
51
- "//packages/angular_devkit/core",
52
- "//packages/angular_devkit/core/node",
53
- "//packages/angular_devkit/schematics",
54
- "//packages/angular_devkit/schematics/tasks",
55
- "//packages/angular_devkit/schematics/testing",
56
- "//tests/angular_devkit/schematics/tools/file-system-engine-host:file_system_engine_host_test_lib",
57
- "@npm//rxjs",
58
- ],
59
- )
60
-
61
- [
62
- jasmine_node_test(
63
- name = "tools_test_" + toolchain_name,
64
- srcs = [":tools_test_lib"],
65
- tags = [toolchain_name],
66
- toolchain = toolchain,
67
- deps = [
68
- "@npm//jasmine",
69
- "@npm//source-map",
70
- ],
71
- )
72
- for toolchain_name, toolchain in zip(
73
- TOOLCHAINS_NAMES,
74
- TOOLCHAINS_VERSIONS,
75
- )
76
- ]
77
-
78
- # @external_end