@osdk/create-widget 2.1.0-beta.9 → 2.2.0-beta.1
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/CHANGELOG.md +20 -0
- package/build/esm/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @osdk/create-widget
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.11
|
|
4
|
+
|
|
5
|
+
## 2.1.0-beta.10
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- 317b555: Release
|
|
10
|
+
|
|
3
11
|
## 2.1.0-beta.9
|
|
4
12
|
|
|
5
13
|
## 2.1.0-beta.8
|
|
@@ -24,6 +32,18 @@
|
|
|
24
32
|
|
|
25
33
|
## 2.1.0-beta.2
|
|
26
34
|
|
|
35
|
+
## 2.0.0
|
|
36
|
+
|
|
37
|
+
### Minor Changes
|
|
38
|
+
|
|
39
|
+
- 776ae5d: Initial create widget CLI
|
|
40
|
+
- ff1ece7: Update create-widget template README and autoVersion strategy
|
|
41
|
+
- 314ae66: Move from "views" naming to "widgets"
|
|
42
|
+
- 255a8f1: Add minimal React widget template without OSDK
|
|
43
|
+
- 14bb6d2: Address comments on new minimal widget template
|
|
44
|
+
- 83e7ea3: Move from a single-widget to widget set model for custom widget libraries
|
|
45
|
+
- d430386: Rename unstable create-widget --widgetSetRid arg to --widgetSet
|
|
46
|
+
|
|
27
47
|
## 2.0.0-beta.16
|
|
28
48
|
|
|
29
49
|
### Minor Changes
|
package/build/esm/index.js
CHANGED
|
@@ -358,7 +358,7 @@ async function run({
|
|
|
358
358
|
|
|
359
359
|
// src/cli.ts
|
|
360
360
|
async function cli(args = process.argv) {
|
|
361
|
-
const base = yargs(hideBin(args)).version("2.
|
|
361
|
+
const base = yargs(hideBin(args)).version("2.2.0-beta.1").wrap(Math.min(150, yargs().terminalWidth())).strict().help().command("$0 [project] [--<option>]", "Create a new OSDK widget set based on framework templates. Information may be provided through options to skip interactive prompts.", (yargs2) => yargs2.positional("project", {
|
|
362
362
|
type: "string",
|
|
363
363
|
describe: "Project name to create"
|
|
364
364
|
}).option("overwrite", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/create-widget",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0-beta.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"redent": "^4.0.0",
|
|
39
39
|
"tmp": "^0.2.3",
|
|
40
40
|
"typescript": "~5.5.4",
|
|
41
|
-
"@osdk/create-widget.template.minimal-react.v2": "2.
|
|
42
|
-
"@osdk/
|
|
43
|
-
"@osdk/
|
|
44
|
-
"@osdk/
|
|
45
|
-
"@osdk/
|
|
41
|
+
"@osdk/create-widget.template.minimal-react.v2": "2.2.0-beta.1",
|
|
42
|
+
"@osdk/monorepo.tsconfig": "~0.2.0-beta.1",
|
|
43
|
+
"@osdk/monorepo.api-extractor": "~0.2.0-beta.1",
|
|
44
|
+
"@osdk/create-widget.template.react.v2": "2.2.0-beta.1",
|
|
45
|
+
"@osdk/generator-utils": "2.3.0-beta.1"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|