File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed
packages-exp/firebase-exp/database Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 1
- export * from '@firebase/database' ;
1
+ /**
2
+ * @license
3
+ * Copyright 2020 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ export * from '@firebase/database' ;
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ const deps = Object.keys(
33
33
const es5BuildPlugins = [
34
34
typescriptPlugin ( {
35
35
typescript,
36
+ abortOnError : false ,
36
37
transformers : [ importPathTransformer ]
37
38
} ) ,
38
39
json ( )
@@ -74,6 +75,7 @@ const es2017BuildPlugins = [
74
75
target : 'es2017'
75
76
}
76
77
} ,
78
+ abortOnError : false ,
77
79
transformers : [ importPathTransformer ]
78
80
} ) ,
79
81
json ( { preferConst : true } )
Original file line number Diff line number Diff line change @@ -51,10 +51,7 @@ export async function prepare() {
51
51
packageJson . typings = expPackageJson . typings . replace ( '../' , '' ) ;
52
52
53
53
// include files to be published
54
- packageJson . files = [
55
- ...packageJson . files ,
56
- packageJson . typings
57
- ] ;
54
+ packageJson . files = [ ...packageJson . files , packageJson . typings ] ;
58
55
59
56
// update package.json files
60
57
await writeFile (
You can’t perform that action at this time.
0 commit comments