Skip to content

Commit 95ff37a

Browse files
committed
refactor: licenses and BUILD unignoring
1 parent 0540ae5 commit 95ff37a

File tree

24 files changed

+124
-2
lines changed

24 files changed

+124
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Outputs
22
bazel-*
3-
build/
43
dist/
54

65
# IDEs

BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility = ["//visibility:public"])
26
exports_files(["tsconfig.json"])
37

packages/schematics/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:private"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/engine/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/exception/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/rules/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/rules/call.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* @license
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+
*/
18
import {BaseException} from '../exception/exception';
29
import {Rule, SchematicContext, Source} from '../engine/interface';
310
import {Tree} from '../tree/interface';

packages/schematics/src/sink/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/tree/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

packages/schematics/src/utility/BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Copyright Google Inc. All Rights Reserved.
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be
4+
# found in the LICENSE file at https://angular.io/license
15
package(default_visibility=["//visibility:public"])
26
load("@io_bazel_rules_typescript//:defs.bzl", "ts_library")
37

0 commit comments

Comments
 (0)