@po-ui/ng-storage 6.10.0 → 6.12.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@po-ui/ng-storage",
3
- "version": "6.10.0",
3
+ "version": "6.12.0",
4
4
  "tag": "next",
5
5
  "description": "PO UI - Storage",
6
6
  "author": "PO UI",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "schematics": "./schematics/collection.json",
14
14
  "dependencies": {
15
- "@po-ui/ng-schematics": "6.10.0",
15
+ "@po-ui/ng-schematics": "6.12.0",
16
16
  "custom-idle-queue": "2.1.2",
17
17
  "localforage": "1.9.0",
18
18
  "lokijs": "1.5.12",
Binary file
@@ -21,7 +21,7 @@ function default_1(options) {
21
21
  exports.default = default_1;
22
22
  function addPoPackageAndInstall() {
23
23
  return (tree, context) => {
24
- (0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-storage', '6.10.0');
24
+ (0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-storage', '6.12.0');
25
25
  // install packages
26
26
  context.addTask(new tasks_1.NodePackageInstallTask());
27
27
  };
@@ -15,14 +15,14 @@ describe('Schematic: ng-add', () => {
15
15
  name: 'po'
16
16
  };
17
17
  let appTree;
18
- beforeEach(() => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
18
+ beforeEach(() => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
19
19
  appTree = yield runner.runExternalSchematicAsync('@schematics/angular', 'workspace', workspaceOptions).toPromise();
20
20
  appTree = yield runner
21
21
  .runExternalSchematicAsync('@schematics/angular', 'application', componentOptions, appTree)
22
22
  .toPromise();
23
23
  }));
24
24
  describe('Dependencies:', () => {
25
- it('should update package.json with @po-ui/ng-storage dependency and run nodePackageInstall', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
25
+ it('should update package.json with @po-ui/ng-storage dependency and run nodePackageInstall', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
26
26
  const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
27
27
  const packageJson = JSON.parse(getFileContent(tree, '/package.json'));
28
28
  const dependencies = packageJson.dependencies;
@@ -32,7 +32,7 @@ describe('Schematic: ng-add', () => {
32
32
  }));
33
33
  });
34
34
  describe('Imports:', () => {
35
- it('should add the PoStorageModule to the project module', () => (0, tslib_1.__awaiter)(void 0, void 0, void 0, function* () {
35
+ it('should add the PoStorageModule to the project module', () => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
36
36
  const poStorageModuleName = 'PoStorageModule';
37
37
  const tree = yield runner.runSchematicAsync('ng-add', componentOptions, appTree).toPromise();
38
38
  const fileContent = getFileContent(tree, `projects/${componentOptions.name}/src/app/app.module.ts`);
Binary file