@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/release.py +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/lds-core-release",
3
3
  "private": false,
4
- "version": "1.259.0",
4
+ "version": "1.261.0",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "description": "LDS release System",
7
7
  "scripts": {
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.parse_args()
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)