@salesforce/lds-core-release 1.259.0 → 1.261.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.
- package/package.json +1 -1
- package/src/release.py +1 -1
package/package.json
CHANGED
package/src/release.py
CHANGED
|
@@ -171,7 +171,7 @@ async def main():
|
|
|
171
171
|
parser = argparse.ArgumentParser(description="The release script for LDS")
|
|
172
172
|
parser.add_argument("-o", "--outputDir", help="Path to the output directory generated by yarn build:core-artifacts")
|
|
173
173
|
parser.add_argument("-c", "--coreDir", help="Path to the target core directory")
|
|
174
|
-
args = parser.
|
|
174
|
+
args, unknown = parser.parse_known_args()
|
|
175
175
|
|
|
176
176
|
source_filepath = Path(args.outputDir or input("Enter the location of the LDS release artifact. Default: ./output: ") or './output').expanduser()
|
|
177
177
|
print("LDS Release artifact path:", source_filepath)
|