Skip to content

Commit 6d64028

Browse files
authored
Fixes to allow auth and remote config exp releases (#4156)
1 parent 93d8dc0 commit 6d64028

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

packages-exp/auth-compat-exp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
2121
"test:browser": "karma start --single-run",
2222
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js",
23-
"prepare": "yarn build"
23+
"prepare": "yarn build:release"
2424
},
2525
"peerDependencies": {
2626
"@firebase/app-compat": "0.x",

packages-exp/remote-config-exp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"test:browser": "karma start --single-run",
2222
"test:debug": "karma start --browsers=Chrome --auto-watch",
2323
"prettier": "prettier --write '{src,test}/**/*.{js,ts}'",
24-
"prepare": "yarn build",
24+
"prepare": "yarn build:release",
2525
"api-report": "api-extractor run --local --verbose",
2626
"predoc": "node ../../scripts/exp/remove-exp.js temp",
2727
"doc": "api-documenter markdown --input temp --output docs",

scripts/exp/release.ts

-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ async function publishExpPackages({ dryRun }: { dryRun: boolean }) {
6666
`${projectRoot}/packages-exp/*`
6767
]);
6868

69-
// exclude auth packages until we are ready to release
70-
packagePaths = packagePaths.filter(path => !path.includes('auth'));
71-
7269
packagePaths.push(`${projectRoot}/packages/firestore`);
7370

7471
/**

0 commit comments

Comments
 (0)