ng-alain 12.2.2 → 12.2.3
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.
|
@@ -108,4 +108,12 @@ describe('NgAlainSchematic: application', () => {
|
|
|
108
108
|
});
|
|
109
109
|
});
|
|
110
110
|
});
|
|
111
|
+
|
|
112
|
+
describe('#form', () => {
|
|
113
|
+
it(`should be export json-schema.ts in shared/index.ts`, async () => {
|
|
114
|
+
({ runner, tree } = await createAlainApp({ form: false }));
|
|
115
|
+
const content = tree.readContent('/projects/foo/src/app/shared/index.ts');
|
|
116
|
+
expect(content).not.toContain(`json-schema`);
|
|
117
|
+
});
|
|
118
|
+
});
|
|
111
119
|
});
|
package/package.json
CHANGED
package/utils/lib-versions.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ZORROVERSION = exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '^12.2.
|
|
4
|
+
exports.VERSION = '^12.2.3';
|
|
5
5
|
exports.ZORROVERSION = '^12.0.1';
|
|
6
6
|
//# sourceMappingURL=lib-versions.js.map
|
package/utils/lib-versions.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '^12.2.
|
|
1
|
+
export const VERSION = '^12.2.3';
|
|
2
2
|
export const ZORROVERSION = '^12.0.1';
|