openmrs 6.3.1-pre.3058 → 6.3.1-pre.3063

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.
@@ -79,16 +79,16 @@ async function readConfig(mode, configs, fetchOptions) {
79
79
  const questions = [];
80
80
  for (const pckg of packages) {
81
81
  questions.push({
82
- name: pckg.name,
82
+ name: `include:${pckg.name}`,
83
83
  message: `Include frontend module "${pckg.name}"?`,
84
84
  default: false,
85
85
  type: 'confirm',
86
86
  }, {
87
- name: pckg.name,
87
+ name: `version:${pckg.name}`,
88
88
  message: `Version for "${pckg.name}"?`,
89
89
  default: pckg.version,
90
90
  type: 'string',
91
- when: (ans) => ans[pckg.name],
91
+ when: (ans) => ans[`include:${pckg.name}`],
92
92
  validate: (input) => {
93
93
  if (typeof input !== 'string') {
94
94
  return `Expected a valid SemVer string, got ${typeof input}.`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmrs",
3
- "version": "6.3.1-pre.3058",
3
+ "version": "6.3.1-pre.3063",
4
4
  "license": "MPL-2.0",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli.js",
@@ -29,9 +29,9 @@
29
29
  ],
30
30
  "homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
31
31
  "dependencies": {
32
- "@openmrs/esm-app-shell": "6.3.1-pre.3058",
33
- "@openmrs/rspack-config": "6.3.1-pre.3058",
34
- "@openmrs/webpack-config": "6.3.1-pre.3058",
32
+ "@openmrs/esm-app-shell": "6.3.1-pre.3063",
33
+ "@openmrs/rspack-config": "6.3.1-pre.3063",
34
+ "@openmrs/webpack-config": "6.3.1-pre.3063",
35
35
  "@pnpm/npm-conf": "^2.1.0",
36
36
  "@rspack/cli": "^1.3.11",
37
37
  "@rspack/core": "^1.3.11",
@@ -130,17 +130,17 @@ async function readConfig(
130
130
  for (const pckg of packages) {
131
131
  questions.push(
132
132
  {
133
- name: pckg.name,
133
+ name: `include:${pckg.name}`,
134
134
  message: `Include frontend module "${pckg.name}"?`,
135
135
  default: false,
136
136
  type: 'confirm',
137
137
  },
138
138
  {
139
- name: pckg.name,
139
+ name: `version:${pckg.name}`,
140
140
  message: `Version for "${pckg.name}"?`,
141
141
  default: pckg.version,
142
142
  type: 'string',
143
- when: (ans) => ans[pckg.name],
143
+ when: (ans) => ans[`include:${pckg.name}`],
144
144
  validate: (input) => {
145
145
  if (typeof input !== 'string') {
146
146
  return `Expected a valid SemVer string, got ${typeof input}.`;