Skip to content

Commit e25903a

Browse files
Try again
1 parent d48405b commit e25903a

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

packages/firestore/.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
module.exports = {
219
extends: '../../config/.eslintrc.js',
320
parserOptions: {
@@ -35,6 +52,13 @@ module.exports = {
3552
rules: {
3653
'@typescript-eslint/no-explicit-any': 'error'
3754
}
55+
},
56+
// TODO(firestorelite): Remove this exception when app-exp is published
57+
{
58+
files: ['lite/**/*.ts'],
59+
rules: {
60+
'import/no-extraneous-dependencies': 'off'
61+
}
3862
}
3963
]
4064
};

packages/firestore/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"prebuild": "tsc -m es2015 --moduleResolution node scripts/*.ts ",
1111
"build": "rollup -c rollup.config.es2017.js && rollup -c rollup.config.es5.js && yarn build:lite",
12-
"build:deps": "lerna run --scope @firebase/'{app,firestore}' --include-dependencies build",
12+
"build:deps": "lerna run --scope @firebase/'{app,app-exp,firestore}' --include-dependencies build",
1313
"build:console": "node tools/console.build.js",
1414
"build:exp": "rollup -c rollup.config.exp.js",
1515
"build:lite": "rollup -c rollup.config.lite.js",
@@ -63,8 +63,6 @@
6363
"@firebase/app-types": "0.x"
6464
},
6565
"devDependencies": {
66-
"@firebase/app-exp": "0.x",
67-
"@firebase/app-types-ext": "0.x",
6866
"@types/json-stable-stringify": "1.0.32",
6967
"json-stable-stringify": "1.0.1",
7068
"protobufjs": "6.9.0",

0 commit comments

Comments
 (0)