sb-mig 2.9.3 → 2.9.13

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/README.md CHANGED
@@ -302,6 +302,7 @@ COMMANDS
302
302
  * [`sb-mig debug`](#sb-mig-debug)
303
303
  * [`sb-mig help [COMMAND]`](#sb-mig-help-command)
304
304
  * [`sb-mig plugins`](#sb-mig-plugins)
305
+ * [`sb-mig plugins:inspect PLUGIN...`](#sb-mig-pluginsinspect-plugin)
305
306
  * [`sb-mig plugins:install PLUGIN...`](#sb-mig-pluginsinstall-plugin)
306
307
  * [`sb-mig plugins:link PLUGIN`](#sb-mig-pluginslink-plugin)
307
308
  * [`sb-mig plugins:uninstall PLUGIN...`](#sb-mig-pluginsuninstall-plugin)
@@ -334,7 +335,7 @@ OPTIONS
334
335
  -x, --oneDatasource=oneDatasource Backup one datasource by name.
335
336
  ```
336
337
 
337
- _See code: [lib/commands/backup.js](https://github.com/sb-mig/sb-mig/blob/v2.9.3/lib/commands/backup.js)_
338
+ _See code: [lib/commands/backup.js](https://github.com/sb-mig/sb-mig/blob/v2.9.13/lib/commands/backup.js)_
338
339
 
339
340
  ## `sb-mig debug`
340
341
 
@@ -350,7 +351,7 @@ OPTIONS
350
351
  -h, --help show CLI help
351
352
  ```
352
353
 
353
- _See code: [lib/commands/debug.js](https://github.com/sb-mig/sb-mig/blob/v2.9.3/lib/commands/debug.js)_
354
+ _See code: [lib/commands/debug.js](https://github.com/sb-mig/sb-mig/blob/v2.9.13/lib/commands/debug.js)_
354
355
 
355
356
  ## `sb-mig help [COMMAND]`
356
357
 
@@ -373,29 +374,52 @@ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.3
373
374
 
374
375
  ## `sb-mig plugins`
375
376
 
376
- list installed plugins
377
+ List installed plugins.
377
378
 
378
379
  ```
379
- list installed plugins
380
+ List installed plugins.
380
381
 
381
382
  USAGE
382
383
  $ sb-mig plugins
383
384
 
384
385
  OPTIONS
385
- --core show core plugins
386
+ --core Show core plugins.
386
387
 
387
388
  EXAMPLE
388
389
  $ sb-mig plugins
389
390
  ```
390
391
 
391
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.9.5/src/commands/plugins/index.ts)_
392
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/index.ts)_
393
+
394
+ ## `sb-mig plugins:inspect PLUGIN...`
395
+
396
+ Displays installation properties of a plugin.
397
+
398
+ ```
399
+ Displays installation properties of a plugin.
400
+
401
+ USAGE
402
+ $ sb-mig plugins:inspect PLUGIN...
403
+
404
+ ARGUMENTS
405
+ PLUGIN [default: .] Plugin to inspect.
406
+
407
+ OPTIONS
408
+ -h, --help Show CLI help.
409
+ -v, --verbose
410
+
411
+ EXAMPLE
412
+ $ sb-mig plugins:inspect myplugin
413
+ ```
414
+
415
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/inspect.ts)_
392
416
 
393
417
  ## `sb-mig plugins:install PLUGIN...`
394
418
 
395
- installs a plugin into the CLI
419
+ Installs a plugin into the CLI.
396
420
 
397
421
  ```
398
- installs a plugin into the CLI
422
+ Installs a plugin into the CLI.
399
423
  Can be installed from npm or a git url.
400
424
 
401
425
  Installation of a user-installed plugin will override a core plugin.
@@ -407,11 +431,11 @@ USAGE
407
431
  $ sb-mig plugins:install PLUGIN...
408
432
 
409
433
  ARGUMENTS
410
- PLUGIN plugin to install
434
+ PLUGIN Plugin to install.
411
435
 
412
436
  OPTIONS
413
- -f, --force yarn install with force flag
414
- -h, --help show CLI help
437
+ -f, --force Run yarn install with force flag.
438
+ -h, --help Show CLI help.
415
439
  -v, --verbose
416
440
 
417
441
  DESCRIPTION
@@ -432,14 +456,14 @@ EXAMPLES
432
456
  $ sb-mig plugins:install someuser/someplugin
433
457
  ```
434
458
 
435
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.9.5/src/commands/plugins/install.ts)_
459
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/install.ts)_
436
460
 
437
461
  ## `sb-mig plugins:link PLUGIN`
438
462
 
439
- links a plugin into the CLI for development
463
+ Links a plugin into the CLI for development.
440
464
 
441
465
  ```
442
- links a plugin into the CLI for development
466
+ Links a plugin into the CLI for development.
443
467
  Installation of a linked plugin will override a user-installed or core plugin.
444
468
 
445
469
  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' command will override the user-installed or core plugin implementation. This is useful for development work.
@@ -452,7 +476,7 @@ ARGUMENTS
452
476
  PATH [default: .] path to plugin
453
477
 
454
478
  OPTIONS
455
- -h, --help show CLI help
479
+ -h, --help Show CLI help.
456
480
  -v, --verbose
457
481
 
458
482
  DESCRIPTION
@@ -465,14 +489,14 @@ EXAMPLE
465
489
  $ sb-mig plugins:link myplugin
466
490
  ```
467
491
 
468
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.9.5/src/commands/plugins/link.ts)_
492
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/link.ts)_
469
493
 
470
494
  ## `sb-mig plugins:uninstall PLUGIN...`
471
495
 
472
- removes a plugin from the CLI
496
+ Removes a plugin from the CLI.
473
497
 
474
498
  ```
475
- removes a plugin from the CLI
499
+ Removes a plugin from the CLI.
476
500
 
477
501
  USAGE
478
502
  $ sb-mig plugins:uninstall PLUGIN...
@@ -481,7 +505,7 @@ ARGUMENTS
481
505
  PLUGIN plugin to uninstall
482
506
 
483
507
  OPTIONS
484
- -h, --help show CLI help
508
+ -h, --help Show CLI help.
485
509
  -v, --verbose
486
510
 
487
511
  ALIASES
@@ -489,24 +513,24 @@ ALIASES
489
513
  $ sb-mig plugins:remove
490
514
  ```
491
515
 
492
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.9.5/src/commands/plugins/uninstall.ts)_
516
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/uninstall.ts)_
493
517
 
494
518
  ## `sb-mig plugins:update`
495
519
 
496
- update installed plugins
520
+ Update installed plugins.
497
521
 
498
522
  ```
499
- update installed plugins
523
+ Update installed plugins.
500
524
 
501
525
  USAGE
502
526
  $ sb-mig plugins:update
503
527
 
504
528
  OPTIONS
505
- -h, --help show CLI help
529
+ -h, --help Show CLI help.
506
530
  -v, --verbose
507
531
  ```
508
532
 
509
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.9.5/src/commands/plugins/update.ts)_
533
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.0.11/src/commands/plugins/update.ts)_
510
534
 
511
535
  ## `sb-mig sync TYPE [LIST]`
512
536
 
@@ -539,7 +563,7 @@ EXAMPLES
539
563
  $ sb-mig sync roles
540
564
  ```
541
565
 
542
- _See code: [lib/commands/sync.js](https://github.com/sb-mig/sb-mig/blob/v2.9.3/lib/commands/sync.js)_
566
+ _See code: [lib/commands/sync.js](https://github.com/sb-mig/sb-mig/blob/v2.9.13/lib/commands/sync.js)_
543
567
  <!-- commandsstop -->
544
568
 
545
569
  # Plugins
@@ -1 +1 @@
1
- export declare const getComponentPresets: (componentName: string) => Promise<false | [unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown, unknown]>;
1
+ export declare const getComponentPresets: (componentName: string) => Promise<false | any[]>;
@@ -5,12 +5,18 @@ const core_1 = require("../core");
5
5
  // TODO: implement --verbose flag to be available in every command
6
6
  class Debug extends core_1.default {
7
7
  async run() {
8
- const { args, flags } = this.parse(Debug);
8
+ // const {} = this.parse(Debug)
9
9
  const config = this.storyblokConfig();
10
10
  const componentsConfig = this.storyblokComponentsConfig().getAllData();
11
+ // eslint-disable-next-line no-console
11
12
  console.log('Thius are changes!');
13
+ // eslint-disable-next-line no-console
12
14
  console.log('storyblok.config.js: ', config, '\n');
15
+ // eslint-disable-next-line no-console
13
16
  console.log('storyblok.components.lock.js: ', componentsConfig);
17
+ const test = '2';
18
+ // eslint-disable-next-line no-console
19
+ console.log(test);
14
20
  }
15
21
  }
16
22
  exports.default = Debug;
@@ -1 +1 @@
1
- {"version":"2.9.3","commands":{"backup":{"id":"backup","description":"Command for backing up anything related to Storyblok","pluginName":"sb-mig","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"allComponents":{"name":"allComponents","type":"boolean","char":"a","description":"Backup all components.","allowNo":false},"oneComponent":{"name":"oneComponent","type":"option","char":"o","description":"Backup one component by name."},"allComponentsGroups":{"name":"allComponentsGroups","type":"boolean","char":"g","description":"Backup all components groups.","allowNo":false},"oneComponentsGroup":{"name":"oneComponentsGroup","type":"option","char":"f","description":"Backup one components group by name."},"oneComponentPresets":{"name":"oneComponentPresets","type":"option","char":"p","description":"Backup all presets for one component"},"allPresets":{"name":"allPresets","type":"boolean","char":"l","description":"Backup all presets.","allowNo":false},"onePreset":{"name":"onePreset","type":"option","char":"i","description":"Backup one preset by id."},"allDatasources":{"name":"allDatasources","type":"boolean","char":"d","description":"Backup all datasources.","allowNo":false},"oneDatasource":{"name":"oneDatasource","type":"option","char":"x","description":"Backup one datasource by name."},"datasourceEntries":{"name":"datasourceEntries","type":"option","char":"e","description":"Backup one datasource entries by datasource name."},"allRoles":{"name":"allRoles","type":"boolean","char":"R","description":"Backup all roles and permissions.","allowNo":false},"oneRole":{"name":"oneRole","type":"option","char":"r","description":"Backup one role by name."}},"args":[]},"debug":{"id":"debug","description":"Output extra debugging","pluginName":"sb-mig","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false}},"args":[]},"sync":{"id":"sync","description":"Synchronize components, datasources or roles with Storyblok space.","pluginName":"sb-mig","pluginType":"core","aliases":[],"examples":["$ sb-mig sync components --all --ext","$ sb-mig sync components @storyblok-components/text-block --ext --packageName","$ sb-mig sync components @storyblok-components/text-block @storyblok-components/button --ext --packageName","$ sb-mig sync components text-block button --ext","$ sb-mig sync components text-block button","$ sb-mig sync roles"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"all":{"name":"all","type":"boolean","char":"a","description":"Synchronize all components.","allowNo":false},"ext":{"name":"ext","type":"boolean","char":"e","description":"Synchronize with file extension. Default extension: '.sb.js'","allowNo":false},"packageName":{"name":"packageName","type":"boolean","char":"n","description":"Synchronize based on installed package name.","allowNo":false},"presets":{"name":"presets","type":"boolean","char":"p","description":"Synchronize components with presets.","allowNo":false},"lock":{"name":"lock","type":"boolean","char":"l","description":"Synchronize based on storyblok.components.lock.js file","allowNo":false}},"args":[{"name":"type","description":"What to synchronize","required":true,"options":["components","datasources","roles"]},{"name":"list","description":"Space separated list of component names. Example: card product-card row layout"}]}}}
1
+ {"version":"2.9.13","commands":{"backup":{"id":"backup","description":"Command for backing up anything related to Storyblok","pluginName":"sb-mig","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"allComponents":{"name":"allComponents","type":"boolean","char":"a","description":"Backup all components.","allowNo":false},"oneComponent":{"name":"oneComponent","type":"option","char":"o","description":"Backup one component by name."},"allComponentsGroups":{"name":"allComponentsGroups","type":"boolean","char":"g","description":"Backup all components groups.","allowNo":false},"oneComponentsGroup":{"name":"oneComponentsGroup","type":"option","char":"f","description":"Backup one components group by name."},"oneComponentPresets":{"name":"oneComponentPresets","type":"option","char":"p","description":"Backup all presets for one component"},"allPresets":{"name":"allPresets","type":"boolean","char":"l","description":"Backup all presets.","allowNo":false},"onePreset":{"name":"onePreset","type":"option","char":"i","description":"Backup one preset by id."},"allDatasources":{"name":"allDatasources","type":"boolean","char":"d","description":"Backup all datasources.","allowNo":false},"oneDatasource":{"name":"oneDatasource","type":"option","char":"x","description":"Backup one datasource by name."},"datasourceEntries":{"name":"datasourceEntries","type":"option","char":"e","description":"Backup one datasource entries by datasource name."},"allRoles":{"name":"allRoles","type":"boolean","char":"R","description":"Backup all roles and permissions.","allowNo":false},"oneRole":{"name":"oneRole","type":"option","char":"r","description":"Backup one role by name."}},"args":[]},"debug":{"id":"debug","description":"Output extra debugging","pluginName":"sb-mig","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false}},"args":[]},"sync":{"id":"sync","description":"Synchronize components, datasources or roles with Storyblok space.","pluginName":"sb-mig","pluginType":"core","aliases":[],"examples":["$ sb-mig sync components --all --ext","$ sb-mig sync components @storyblok-components/text-block --ext --packageName","$ sb-mig sync components @storyblok-components/text-block @storyblok-components/button --ext --packageName","$ sb-mig sync components text-block button --ext","$ sb-mig sync components text-block button","$ sb-mig sync roles"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"all":{"name":"all","type":"boolean","char":"a","description":"Synchronize all components.","allowNo":false},"ext":{"name":"ext","type":"boolean","char":"e","description":"Synchronize with file extension. Default extension: '.sb.js'","allowNo":false},"packageName":{"name":"packageName","type":"boolean","char":"n","description":"Synchronize based on installed package name.","allowNo":false},"presets":{"name":"presets","type":"boolean","char":"p","description":"Synchronize components with presets.","allowNo":false},"lock":{"name":"lock","type":"boolean","char":"l","description":"Synchronize based on storyblok.components.lock.js file","allowNo":false}},"args":[{"name":"type","description":"What to synchronize","required":true,"options":["components","datasources","roles"]},{"name":"list","description":"Space separated list of component names. Example: card product-card row layout"}]}}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sb-mig",
3
- "version": "2.9.3",
3
+ "version": "2.9.13",
4
4
  "description": "CLI to rule the world. (and handle stuff related to Storyblok CMS)",
5
5
  "author": "Marcin Krawczyk <marckraw@icloud.com>",
6
6
  "bin": {
@@ -9,24 +9,26 @@
9
9
  "bugs": "https://github.com/sb-mig/sb-mig/issues",
10
10
  "dependencies": {
11
11
  "@oclif/command": "^1.8.0",
12
- "@oclif/plugin-plugins": "^1.7.10",
13
- "@oclif/plugin-warn-if-update-available": "^1.7.0",
14
- "axios": "^0.21.4",
12
+ "@oclif/plugin-help": "^2",
13
+ "@oclif/plugin-plugins": "^2.0.11",
14
+ "@oclif/plugin-warn-if-update-available": "^2.0.2",
15
+ "@oclif/test": "^2.0.3",
16
+ "axios": "^0.24.0",
15
17
  "camelcase": "^6.2.0",
16
18
  "dotenv": "^8.2.0",
17
19
  "glob": "^7.1.6",
18
20
  "ncp": "^2.0.0",
19
21
  "rimraf": "^3.0.2",
20
- "storyblok-js-client": "^3.3.1"
22
+ "storyblok-js-client": "^4.1.5"
21
23
  },
22
24
  "devDependencies": {
23
- "@oclif/dev-cli": "^1",
25
+ "@oclif/dev-cli": "^1.26.9",
24
26
  "@oclif/test": "^1",
25
27
  "conventional-changelog-cli": "^2.0.31",
26
28
  "eslint-config-oclif": "^3.1"
27
29
  },
28
30
  "engines": {
29
- "node": ">=8.0.0"
31
+ "node": "^14.13.1 || >=16.0.0"
30
32
  },
31
33
  "files": [
32
34
  "/bin",
@@ -61,14 +63,18 @@
61
63
  "type": "git",
62
64
  "url": "git+https://github.com/sb-mig/sb-mig.git"
63
65
  },
66
+ "publishConfig": {
67
+ "registry": "https://registry.npmjs.org/",
68
+ "access": "public"
69
+ },
64
70
  "scripts": {
65
71
  "postpack": "rm -f oclif.manifest.json",
66
72
  "posttest": "eslint . --ext .ts --config .eslintrc",
67
73
  "build": "rm -rf lib && tsc -b",
68
- "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
74
+ "prepack": "rm -rf lib && tsc -b && npx oclif-dev manifest && npx oclif-dev readme",
69
75
  "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
70
- "version": "conventional-changelog -p eslint -i CHANGELOG.md -s && oclif-dev readme && git add README.md && git add CHANGELOG.md"
76
+ "version": "conventional-changelog -p eslint -i CHANGELOG.md -s"
71
77
  },
72
78
  "types": "lib/index.d.ts",
73
- "gitHead": "d2d2c915043f6228bbda2117f7393896b867bd60"
79
+ "gitHead": "0d43a0437ba6baf0379c9bcbce16a4132d3ff7f8"
74
80
  }
package/CHANGELOG.md DELETED
@@ -1,996 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## <small>2.9.3 (2021-09-13)</small>
7
-
8
- * chore(deps): move and update typescript ([6dd1d56](https://github.com/sb-mig/sb-mig/commit/6dd1d56))
9
- * chore(deps): move common deps higher ([615200b](https://github.com/sb-mig/sb-mig/commit/615200b))
10
- * chore(deps): move more deps higher, and update some of them ([d68aa2b](https://github.com/sb-mig/sb-mig/commit/d68aa2b))
11
-
12
-
13
-
14
-
15
-
16
- ## <small>2.9.2 (2021-03-31)</small>
17
-
18
- * fix(eslint fixes): eslint whole sb-mig core, and fix some bugs with types ([25eb801](https://github.com/sb-mig/sb-mig/commit/25eb801))
19
- * chore(packages): update dependencies, such as typescript (3.9.9 -> 4.2.3), and some others ([b3b6f0b](https://github.com/sb-mig/sb-mig/commit/b3b6f0b))
20
-
21
-
22
-
23
-
24
-
25
- ## <small>2.9.1 (2021-02-25)</small>
26
-
27
- * fix(storyblok-js-client): fix axios peer dependency need from storyblok-js-client ([c104a8f](https://github.com/sb-mig/sb-mig/commit/c104a8f))
28
- * Update storyblok-js-client version ([ed91437](https://github.com/sb-mig/sb-mig/commit/ed91437))
29
-
30
-
31
-
32
-
33
-
34
- ## 2.9.0 (2020-11-09)
35
-
36
- * docs(sync roles): add roadmap point for syncing roles ([1fc89af](https://github.com/sb-mig/sb-mig/commit/1fc89af))
37
- * feat(backup roles): add backup all and one role to backup command ([d285513](https://github.com/sb-mig/sb-mig/commit/d285513))
38
- * feat(discover roles): add normalizDiscover and discovering rols files in local and node_modules ([ff15daf](https://github.com/sb-mig/sb-mig/commit/ff15daf))
39
- * feat(roles): add config entries for roles.sb.js files ([20b4d65](https://github.com/sb-mig/sb-mig/commit/20b4d65))
40
- * feat(sync roles): finalize sync roles: sync provided roles, sync all roles, updating and creating ([2a2dda4](https://github.com/sb-mig/sb-mig/commit/2a2dda4))
41
-
42
-
43
-
44
-
45
-
46
- ## <small>2.8.6 (2020-11-05)</small>
47
-
48
- **Note:** Version bump only for package sb-mig
49
-
50
-
51
-
52
-
53
-
54
- ## <small>2.8.5 (2020-11-05)</small>
55
-
56
- * fix(storyblokcomponentsconfig): wrong locationPath ([f361a2b](https://github.com/sb-mig/sb-mig/commit/f361a2b))
57
- * fix(sync): not syncing node_modules, when there is only 1 scope node_modules folder in component dir ([7631160](https://github.com/sb-mig/sb-mig/commit/7631160))
58
-
59
-
60
-
61
-
62
-
63
- ## <small>2.8.4 (2020-11-02)</small>
64
-
65
- * fix(discover): not getting external files, only looking for local ones ([a2297a3](https://github.com/sb-mig/sb-mig/commit/a2297a3))
66
-
67
-
68
-
69
-
70
-
71
- ## <small>2.8.3 (2020-11-02)</small>
72
-
73
- * fix(sync): change filePattern to look for schema files (by mistake it was for datasources) ([818d8cc](https://github.com/sb-mig/sb-mig/commit/818d8cc))
74
-
75
-
76
-
77
-
78
-
79
- ## <small>2.8.2 (2020-10-30)</small>
80
-
81
- * fix(contents): add link to contents list ([e59d4b2](https://github.com/sb-mig/sb-mig/commit/e59d4b2))
82
-
83
-
84
-
85
-
86
-
87
- ## <small>2.8.1 (2020-10-30)</small>
88
-
89
- * docs(adding components and overwriting schemas): add very rough docs about adding and overwriting ([0c8ec2f](https://github.com/sb-mig/sb-mig/commit/0c8ec2f))
90
- * fix(auto styles import): auto import styles from sb components, to not import not existing styles ([4eb4870](https://github.com/sb-mig/sb-mig/commit/4eb4870))
91
- * fix(docs): update readme ([915b380](https://github.com/sb-mig/sb-mig/commit/915b380))
92
-
93
-
94
-
95
-
96
-
97
- ## 2.8.0 (2020-10-29)
98
-
99
- * fix(comments): remove not needed comments and console.logs ([865bbb8](https://github.com/sb-mig/sb-mig/commit/865bbb8))
100
- * fix(storyblokcomponentsconfig): remove not needed isInstalled prop from config ([33fac47](https://github.com/sb-mig/sb-mig/commit/33fac47))
101
- * fix(types safety): decide on not using unknown for now (lot of refactor needed) ([8138f90](https://github.com/sb-mig/sb-mig/commit/8138f90))
102
- * fix(wip): wIP ([2b7f718](https://github.com/sb-mig/sb-mig/commit/2b7f718))
103
- * feat(adding and tracking): adding components rewrite, change tracking method for importing files ([1f2bd05](https://github.com/sb-mig/sb-mig/commit/1f2bd05))
104
- * feat(import styles): add discoverManyStyles function ([4b189f1](https://github.com/sb-mig/sb-mig/commit/4b189f1))
105
- * Merge branch 'master' of github.com:sb-mig/sb-mig into improve-tracking-components-feature ([20cd491](https://github.com/sb-mig/sb-mig/commit/20cd491))
106
- * Merge branch 'master' of github.com:sb-mig/sb-mig into improve-tracking-components-feature ([65c2423](https://github.com/sb-mig/sb-mig/commit/65c2423))
107
-
108
-
109
-
110
-
111
-
112
- ## 2.7.0 (2020-10-21)
113
-
114
- * fix(hotfix): fix problems with nanmed imports from datasources to core ([a7cf988](https://github.com/sb-mig/sb-mig/commit/a7cf988))
115
- * fix(hotfix): object is of type unknown ([66dbb8f](https://github.com/sb-mig/sb-mig/commit/66dbb8f))
116
- * feat(sync datasources): add feature of syncing datasources ([88e61d9](https://github.com/sb-mig/sb-mig/commit/88e61d9))
117
-
118
-
119
-
120
-
121
-
122
- ## 2.6.0 (2020-10-19)
123
-
124
- * feat(auto styles import): add match file config option ([775a081](https://github.com/sb-mig/sb-mig/commit/775a081))
125
- * feat(discover): rewrite whole discovering feature +++ ([f0d2b44](https://github.com/sb-mig/sb-mig/commit/f0d2b44))
126
- * feat(sync with lock file): syncing with lock file ([f3cdf0b](https://github.com/sb-mig/sb-mig/commit/f3cdf0b))
127
- * fix(core backup): add indentation to sb-mig backup components files ([36ea9a8](https://github.com/sb-mig/sb-mig/commit/36ea9a8))
128
- * fix(core config): remove not used npmScopeForComponents and reactComponentsDirectory ([2fd7627](https://github.com/sb-mig/sb-mig/commit/2fd7627))
129
- * fix(sb lock file): remove not needed duplicated file ([6c037db](https://github.com/sb-mig/sb-mig/commit/6c037db))
130
-
131
-
132
-
133
-
134
-
135
- ## <small>2.5.1 (2020-10-07)</small>
136
-
137
- * fix(not needed files): remove lib folder from github ([326de8c](https://github.com/sb-mig/sb-mig/commit/326de8c))
138
- * chore(release): beta -> 2.5.0 ([325d862](https://github.com/sb-mig/sb-mig/commit/325d862))
139
-
140
-
141
-
142
-
143
-
144
- ## 2.4.0-beta.2 (2020-10-07)
145
-
146
- **Note:** Version bump only for package sb-mig
147
-
148
-
149
-
150
-
151
-
152
- ## 2.4.0-beta.1 (2020-10-07)
153
-
154
- * fix(not needed files): remove not needed storyblok.config.js file ([47ba3b6](https://github.com/sb-mig/sb-mig/commit/47ba3b6))
155
- * chore(release): publish ([e152a63](https://github.com/sb-mig/sb-mig/commit/e152a63))
156
- * feat(setup): move to monorepo part 1 ([d0a4069](https://github.com/sb-mig/sb-mig/commit/d0a4069))
157
-
158
-
159
-
160
-
161
-
162
- ## 2.4.0-beta.0 (2020-10-07)
163
-
164
- * feat(setup): move to monorepo part 1 ([d0a4069](https://github.com/sb-mig/sb-mig/commit/d0a4069))
165
-
166
-
167
-
168
-
169
-
170
- # [2.4.0-beta.0](https://github.com/sb-mig/sb-mig/compare/v2.3.4...v2.4.0-beta.0) (2020-10-07)
171
-
172
-
173
- ### fix
174
-
175
- * change filenames in backup module to support Windows filenames ([09dd077](https://github.com/sb-mig/sb-mig/commit/09dd0778840f8f18f2e03cab826beaf73c1eacb3))
176
-
177
-
178
-
179
- ## [2.3.6-beta.0](https://github.com/sb-mig/sb-mig/compare/v2.3.6...v2.3.6-beta.0) (2020-10-07)
180
-
181
-
182
-
183
-
184
- ## [2.3.6](https://github.com/sb-mig/sb-mig/compare/v2.3.5...v2.3.6) (2020-09-08)
185
-
186
-
187
-
188
-
189
- ## [2.3.5](https://github.com/sb-mig/sb-mig/compare/v2.3.4...v2.3.5) (2020-08-03)
190
-
191
-
192
- ### fix
193
-
194
- * change filenames in backup module to support Windows filenames ([09dd077](https://github.com/sb-mig/sb-mig/commit/09dd0778840f8f18f2e03cab826beaf73c1eacb3))
195
-
196
-
197
-
198
- ## [2.3.4](https://github.com/sb-mig/sb-mig/compare/v2.3.3...v2.3.4) (2020-07-08)
199
-
200
-
201
- ### development
202
-
203
- * add build command for developing locally ([0d02096](https://github.com/sb-mig/sb-mig/commit/0d02096d7c7b431bc19e43de579112e4761a8a0a))
204
-
205
- ### fix
206
-
207
- * StoryblokComponentsConfig class fail, when there is no lock file ([f0e4428](https://github.com/sb-mig/sb-mig/commit/f0e442888e75ada5761b933089b91c069f6921fc))
208
-
209
-
210
-
211
- ## [2.3.3](https://github.com/sb-mig/sb-mig/compare/v2.3.2...v2.3.3) (2020-07-06)
212
-
213
-
214
- ### fix
215
-
216
- * remove test build on pr - deprecated a lot ([05f8951](https://github.com/sb-mig/sb-mig/commit/05f8951cc5d28faa6a9d148310937ae0f490bba5))
217
-
218
-
219
-
220
- ## [2.3.2](https://github.com/sb-mig/sb-mig/compare/v2.3.1...v2.3.2) (2020-07-06)
221
-
222
-
223
- ### fix
224
-
225
- * not available file ([41abf19](https://github.com/sb-mig/sb-mig/commit/41abf194366ff6e644b989d45a81e9e2d51c6303))
226
-
227
-
228
-
229
- ## [2.3.1](https://github.com/sb-mig/sb-mig/compare/v2.3.0...v2.3.1) (2020-07-06)
230
-
231
-
232
- ### fix
233
-
234
- * storyblok components config export default constructur ([9fd77b2](https://github.com/sb-mig/sb-mig/commit/9fd77b2603e54805dc3f0f7cb20e03fa94416758))
235
-
236
-
237
-
238
- # [2.3.0](https://github.com/sb-mig/sb-mig/compare/v2.2.1...v2.3.0) (2020-07-06)
239
-
240
-
241
- ### feat
242
-
243
- * add a components tracking storyblok.components.config.js file ([23ddd5d](https://github.com/sb-mig/sb-mig/commit/23ddd5d3be4d8cfc9f34803f8b4f8b1d47fd259d))
244
- * remove old tracking solution, add storyblok.components.lock.js file and class for handling all stuff regards tracking components ([a8885c2](https://github.com/sb-mig/sb-mig/commit/a8885c27d61d44452bc6918cd2c7f14249682c23))
245
-
246
-
247
-
248
- ## [2.2.1](https://github.com/sb-mig/sb-mig/compare/v2.2.0...v2.2.1) (2020-06-30)
249
-
250
-
251
- ### fix
252
-
253
- * fix tslint flat() not working in production ([87600cf](https://github.com/sb-mig/sb-mig/commit/87600cf3437c4dfc88e0db18cf24bb1e320079ce))
254
-
255
-
256
-
257
- # [2.2.0](https://github.com/sb-mig/sb-mig/compare/v2.1.12...v2.2.0) (2020-06-30)
258
-
259
-
260
- ### feat
261
-
262
- * syncing is now possible with package name. Example: sb-mig sync components @storyblok-components/simple-text-block --ext --packageName ([bfa8c49](https://github.com/sb-mig/sb-mig/commit/bfa8c490c0e87248a3c7d09e94d2c0a5547ac511))
263
-
264
-
265
-
266
- ## [2.1.12](https://github.com/sb-mig/sb-mig/compare/v2.1.11...v2.1.12) (2020-06-29)
267
-
268
-
269
- ### config
270
-
271
- * allow also nextjs env schema for preview token ([d0a56b6](https://github.com/sb-mig/sb-mig/commit/d0a56b6e4f0e3bc95c4f6a4e0d66642410760a0e))
272
-
273
-
274
-
275
- ## [2.1.11](https://github.com/sb-mig/sb-mig/compare/v2.1.10...v2.1.11) (2020-06-29)
276
-
277
-
278
- ### config
279
-
280
- * add config variable for path of matching component between react and storyblok ([217bd13](https://github.com/sb-mig/sb-mig/commit/217bd13f9c07ff5c01bf8aa83b0ae08f97ef29bc))
281
-
282
-
283
-
284
- ## [2.1.10](https://github.com/sb-mig/sb-mig/compare/v2.1.9...v2.1.10) (2020-06-27)
285
-
286
-
287
- ### docs
288
-
289
- * remove in progress label from plugin-generate-project ([27303a4](https://github.com/sb-mig/sb-mig/commit/27303a40f6a5074986084349a3f95ac50205e257))
290
-
291
-
292
-
293
- ## [2.1.9](https://github.com/sb-mig/sb-mig/compare/v2.1.8...v2.1.9) (2020-06-27)
294
-
295
-
296
- ### fix
297
-
298
- * change default storyblok-boilerplate repository ([8986df8](https://github.com/sb-mig/sb-mig/commit/8986df8a00112a4645df0dfd29ba8356b771f912))
299
-
300
-
301
-
302
- ## [2.1.8](https://github.com/sb-mig/sb-mig/compare/v2.1.7...v2.1.8) (2020-06-23)
303
-
304
-
305
- ### fix
306
-
307
- * follow symlinks while syncing components ([4169096](https://github.com/sb-mig/sb-mig/commit/41690960b2f6025cd50217e5887ef8f936a06268))
308
-
309
-
310
-
311
- ## [2.1.7](https://github.com/sb-mig/sb-mig/compare/v2.1.6...v2.1.7) (2020-06-16)
312
-
313
-
314
- ### fix
315
-
316
- * fix deploy with actions ([db50669](https://github.com/sb-mig/sb-mig/commit/db50669b6e6ec01f919c596cf7fcfbb06ba46512))
317
-
318
-
319
-
320
- ## [2.1.6](https://github.com/sb-mig/sb-mig/compare/v2.1.5...v2.1.6) (2020-06-16)
321
-
322
-
323
- ### packages
324
-
325
- * update oclif command ([a5e5569](https://github.com/sb-mig/sb-mig/commit/a5e5569903449cad567fa0d63451f704a7520c5c))
326
-
327
-
328
-
329
- ## [2.1.5](https://github.com/sb-mig/sb-mig/compare/v2.1.4...v2.1.5) (2020-06-16)
330
-
331
-
332
- ### packages
333
-
334
- * update ora ([2e3ecb7](https://github.com/sb-mig/sb-mig/commit/2e3ecb752031207fcc2c7a2d80d5dcd1af55945a))
335
-
336
-
337
-
338
- ## [2.1.4](https://github.com/sb-mig/sb-mig/compare/v2.1.3...v2.1.4) (2020-06-16)
339
-
340
-
341
- ### docs
342
-
343
- * Add plugins section with available plugins ([f59460d](https://github.com/sb-mig/sb-mig/commit/f59460d3f908429283699a5d15323236866edd9f))
344
-
345
- ### packages
346
-
347
- * update oclif plugins plugin ([21c41a9](https://github.com/sb-mig/sb-mig/commit/21c41a962ca066dae69fc72fe519d63d586cd162))
348
-
349
-
350
-
351
- ## [2.1.3](https://github.com/sb-mig/sb-mig/compare/v2.1.2...v2.1.3) (2020-05-06)
352
-
353
-
354
- ### docs
355
-
356
- * add generate project section to readme ([7537994](https://github.com/sb-mig/sb-mig/commit/7537994f9123dfe7641799ce65b09720f7f26e14))
357
- * add link to npm list of @storyblok-components ([b0bd4ab](https://github.com/sb-mig/sb-mig/commit/b0bd4ab643caebb7245cdb83b001ed91752b13a0))
358
-
359
-
360
-
361
- ## [2.1.2](https://github.com/sb-mig/sb-mig/compare/v2.1.1...v2.1.2) (2020-04-30)
362
-
363
-
364
- ### fix
365
-
366
- * debug not displaying values ([6a26c0f](https://github.com/sb-mig/sb-mig/commit/6a26c0f94b9ef40d9c4f4e9958a1906f587d65f7))
367
-
368
-
369
-
370
- ## [2.1.1](https://github.com/sb-mig/sb-mig/compare/v2.0.1...v2.1.1) (2020-04-30)
371
-
372
- ### hotfix
373
-
374
- * copy types from storyblok and modify, causing problems ([a70466b](https://github.com/sb-mig/sb-mig/commit/a70466bc090fb0c5604d37009f767a4f943c5d71))
375
-
376
-
377
-
378
- # [2.1.0](https://github.com/sb-mig/sb-mig/compare/v2.0.1...v2.1.0) (2020-04-30)
379
-
380
-
381
- ### chore
382
-
383
- * add warn if cli is outdated ([be9fe3e](https://github.com/sb-mig/sb-mig/commit/be9fe3e163d763c2ed17a2bb1cf6f79e7750d3df))
384
-
385
- ### feat
386
-
387
- * add helper and api method to base class ([7bcae6c](https://github.com/sb-mig/sb-mig/commit/7bcae6c7b038e3d7706f27a9e38597d84c412ff8))
388
- * expose some methods from api and from utils files in custom base class ([e698076](https://github.com/sb-mig/sb-mig/commit/e69807660d99ea024d41f45214e417c53bca7971))
389
- * Rewrite api to typescript, update storyblok-js-client, create core custom base class ([12a737f](https://github.com/sb-mig/sb-mig/commit/12a737fd84eaf14d2bb0e2466259306aadd41af2))
390
-
391
-
392
-
393
- ## [2.0.1](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.14...v2.0.1) (2020-04-24)
394
-
395
-
396
-
397
-
398
- # [2.0.0](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.14...v2.0.0) (2020-04-24)
399
-
400
-
401
-
402
-
403
- # [2.0.0-beta.14](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.13...v2.0.0-beta.14) (2020-04-24)
404
-
405
-
406
- ### docs
407
-
408
- * modify contents links in readme ([27b637e](https://github.com/sb-mig/sb-mig/commit/27b637ec07792ba06bf6aeff10180deec3f1794b))
409
-
410
-
411
-
412
- # [2.0.0-beta.13](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.12...v2.0.0-beta.13) (2020-04-24)
413
-
414
-
415
- ### docs
416
-
417
- * add migration guide for backing up ([3f77d11](https://github.com/sb-mig/sb-mig/commit/3f77d1110ee2d474f3bd5b0a25c181a9deb92356))
418
- * add migration guide for datasources ([5003aaf](https://github.com/sb-mig/sb-mig/commit/5003aaf5c47c879a8c4bb0b3f6ee401e0599e7b4))
419
-
420
-
421
-
422
- # [2.0.0-beta.12](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.11...v2.0.0-beta.12) (2020-04-24)
423
-
424
-
425
- ### docs
426
-
427
- * add information about release ([a5a2998](https://github.com/sb-mig/sb-mig/commit/a5a2998647fecece3ef0561cdd1f451bc2957d13))
428
- * add plugins command to contents ([02a8c3a](https://github.com/sb-mig/sb-mig/commit/02a8c3a1ebb01eb856da0fb9de3d4ec40920c2b8))
429
- * update readme ([376d5db](https://github.com/sb-mig/sb-mig/commit/376d5db7e5ddd5da3cc47eb4330baaf558462911))
430
-
431
-
432
-
433
- # [2.0.0-beta.11](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.10...v2.0.0-beta.11) (2020-04-23)
434
-
435
-
436
- ### fix
437
-
438
- * fix sb-mig scope for oclif plugins ([7bf48f3](https://github.com/sb-mig/sb-mig/commit/7bf48f3dbe77bc3407e5f00627aedbca2fcb6efb))
439
-
440
-
441
-
442
- # [2.0.0-beta.10](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2020-04-23)
443
-
444
-
445
- ### plugins
446
-
447
- * add ability to install plugins runtime by user ([fccd9b0](https://github.com/sb-mig/sb-mig/commit/fccd9b0539573f83f38e0283af4ad95b2da201c7))
448
-
449
-
450
-
451
- # [2.0.0-beta.9](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2020-04-23)
452
-
453
-
454
- ### migrating
455
-
456
- * fix sync groupName issue ([6dc4e87](https://github.com/sb-mig/sb-mig/commit/6dc4e879775be5437e338279389f4b905ec81088))
457
-
458
-
459
-
460
- # [2.0.0-beta.8](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.7...v2.0.0-beta.8) (2020-04-21)
461
-
462
-
463
- ### docs
464
-
465
- * update readme with new commands, remove old readme ([8431b85](https://github.com/sb-mig/sb-mig/commit/8431b85a7685da86d98a9d4f9c827935858c0978))
466
-
467
-
468
-
469
- # [2.0.0-beta.7](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.6...v2.0.0-beta.7) (2020-04-21)
470
-
471
-
472
- ### docs
473
-
474
- * update readme ([cee6d1b](https://github.com/sb-mig/sb-mig/commit/cee6d1ba8d9586195399686738228b1e2d65146f))
475
-
476
-
477
-
478
- # [2.0.0-beta.6](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.5...v2.0.0-beta.6) (2020-04-21)
479
-
480
-
481
- ### docs
482
-
483
- * update migration guide and readme ([867fb29](https://github.com/sb-mig/sb-mig/commit/867fb29b0c2643704928a76920809132f1311696))
484
-
485
-
486
-
487
- # [2.0.0-beta.5](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.4...v2.0.0-beta.5) (2020-04-21)
488
-
489
-
490
- ### migrating
491
-
492
- * Migrate synchronizing components to sync command ([fbf6196](https://github.com/sb-mig/sb-mig/commit/fbf6196a27bd72f8fbeec8d47c62baea7bf8bf1d))
493
-
494
-
495
-
496
- # [2.0.0-beta.4](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.0...v2.0.0-beta.4) (2020-04-21)
497
-
498
-
499
- ### chore
500
-
501
- * modify name of main command, fix linting issue ([f24bcaf](https://github.com/sb-mig/sb-mig/commit/f24bcafbf33c4e88315a5804b67f7bfa7ee58179))
502
- * remove package-lock ([cc9c7c5](https://github.com/sb-mig/sb-mig/commit/cc9c7c5d8d735b0c1dc01dceb9756b4f65265e48))
503
-
504
- ### docs
505
-
506
- * clean readme a little ([663bd0d](https://github.com/sb-mig/sb-mig/commit/663bd0dc35d6537318ae27dd7a3a72bce4bc75aa))
507
-
508
- ### ichore
509
-
510
- * modify package.json version script ([f690815](https://github.com/sb-mig/sb-mig/commit/f6908156bb70555fd0b39852eaf51a4310c27971))
511
-
512
- ### migration
513
-
514
- * add migration guide document ([17c0bac](https://github.com/sb-mig/sb-mig/commit/17c0bac3f071930b9e3007fe1ea64de056c5bc5e))
515
- * add sync command ([0494515](https://github.com/sb-mig/sb-mig/commit/0494515cdcd46dd936cd53f0404635554537865b))
516
- * migrate all backup (get*) functionality to backup command ([a3b8abf](https://github.com/sb-mig/sb-mig/commit/a3b8abf7842e33ef0dc3d8d76f8da4e0d217bebf))
517
- * update migration guide - change of commands structure ([340910e](https://github.com/sb-mig/sb-mig/commit/340910e43a9766ffa2e680bfd1cc56585df275bf))
518
-
519
-
520
-
521
- # [2.0.0-beta.3](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.0...v2.0.0-beta.3) (2020-04-21)
522
-
523
-
524
- ### chore
525
-
526
- * modify name of main command, fix linting issue ([f24bcaf](https://github.com/sb-mig/sb-mig/commit/f24bcafbf33c4e88315a5804b67f7bfa7ee58179))
527
- * remove package-lock ([cc9c7c5](https://github.com/sb-mig/sb-mig/commit/cc9c7c5d8d735b0c1dc01dceb9756b4f65265e48))
528
-
529
- ### docs
530
-
531
- * clean readme a little ([663bd0d](https://github.com/sb-mig/sb-mig/commit/663bd0dc35d6537318ae27dd7a3a72bce4bc75aa))
532
-
533
- ### migration
534
-
535
- * add migration guide document ([17c0bac](https://github.com/sb-mig/sb-mig/commit/17c0bac3f071930b9e3007fe1ea64de056c5bc5e))
536
- * migrate all backup (get*) functionality to backup command ([a3b8abf](https://github.com/sb-mig/sb-mig/commit/a3b8abf7842e33ef0dc3d8d76f8da4e0d217bebf))
537
- * update migration guide - change of commands structure ([340910e](https://github.com/sb-mig/sb-mig/commit/340910e43a9766ffa2e680bfd1cc56585df275bf))
538
-
539
-
540
-
541
- # [2.0.0-beta.2](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.0...v2.0.0-beta.2) (2020-04-21)
542
-
543
-
544
- ### chore
545
-
546
- * modify name of main command, fix linting issue ([f24bcaf](https://github.com/sb-mig/sb-mig/commit/f24bcafbf33c4e88315a5804b67f7bfa7ee58179))
547
- * remove package-lock ([cc9c7c5](https://github.com/sb-mig/sb-mig/commit/cc9c7c5d8d735b0c1dc01dceb9756b4f65265e48))
548
-
549
- ### docs
550
-
551
- * clean readme a little ([663bd0d](https://github.com/sb-mig/sb-mig/commit/663bd0dc35d6537318ae27dd7a3a72bce4bc75aa))
552
-
553
- ### migration
554
-
555
- * add migration guide document ([17c0bac](https://github.com/sb-mig/sb-mig/commit/17c0bac3f071930b9e3007fe1ea64de056c5bc5e))
556
- * migrate all backup (get*) functionality to backup command ([a3b8abf](https://github.com/sb-mig/sb-mig/commit/a3b8abf7842e33ef0dc3d8d76f8da4e0d217bebf))
557
- * update migration guide - change of commands structure ([340910e](https://github.com/sb-mig/sb-mig/commit/340910e43a9766ffa2e680bfd1cc56585df275bf))
558
-
559
-
560
-
561
- # [2.0.0-beta.1](https://github.com/sb-mig/sb-mig/compare/v2.0.0-beta.0...v2.0.0-beta.1) (2020-04-20)
562
-
563
- # [2.0.0-beta.0](https://github.com/sb-mig/sb-mig/compare/v1.3.11...v2.0.0-beta.0) (2020-04-20)
564
-
565
-
566
- ### feat
567
-
568
- * Moving whole CLI to use Oclif and plugin system to customize it ([36776f4](https://github.com/sb-mig/sb-mig/commit/36776f42fea769a4d5e0fcbe349f5c42a25be279))
569
-
570
-
571
-
572
- ## [1.3.11](https://github.com/marckraw/sb-mig/compare/v1.3.7...v1.3.11) (2020-04-20)
573
-
574
-
575
- ### chore
576
-
577
- * update .gitignore ([48a330c](https://github.com/marckraw/sb-mig/commit/48a330c7b41046b845e0fae38423713a3a3b4a0b))
578
-
579
- ### feat
580
-
581
- * fix generate command and adding components ([7a1310b](https://github.com/marckraw/sb-mig/commit/7a1310b87d81a163d88a09902f676ed612ba7d55))
582
-
583
-
584
-
585
- ## [1.3.10](https://github.com/marckraw/sb-mig/compare/v1.3.9...v1.3.10) (2020-03-25)
586
-
587
- ### build(deps)
588
-
589
- * bump acorn from 5.7.3 to 5.7.4 ([d6510e5](https://github.com/marckraw/sb-mig/commit/d6510e5))
590
-
591
-
592
- ## [1.3.9](https://github.com/marckraw/sb-mig/compare/v1.3.8...v1.3.9) (2020-03-25)
593
-
594
- ### node-version-needed
595
-
596
- * d6510e5 nump version to 12 (using Promise.allSettled)
597
-
598
- ### add-command
599
-
600
- * improve loaders and async copyfolder / installing ([ade4c61](https://github.com/marckraw/sb-mig/commit/ade4c61))
601
- * add copyFolder utils, change the way folder is copying, add ora loaders ([6847a03](https://github.com/marckraw/sb-mig/commit/6847a03))
602
-
603
-
604
- ## [1.3.8](https://github.com/marckraw/sb-mig/compare/v1.3.7...v1.3.8) (2020-03-20)
605
-
606
-
607
- ### feat
608
-
609
- * fix generate command and adding components ([7a1310b](https://github.com/marckraw/sb-mig/commit/7a1310b87d81a163d88a09902f676ed612ba7d55))
610
-
611
-
612
-
613
- ## [1.3.7](https://github.com/marckraw/sb-mig/compare/v1.3.6...v1.3.7) (2020-03-19)
614
-
615
-
616
- ### add
617
-
618
- * add command to install and move storyblok scoped components ([1dc427a](https://github.com/marckraw/sb-mig/commit/1dc427aadf273e15300f3be093328443fa124b14))
619
-
620
-
621
-
622
- ## [1.3.6](https://github.com/marckraw/sb-mig/compare/v1.3.5...v1.3.6) (2020-03-13)
623
-
624
-
625
- ### update
626
-
627
- * change logs for presets to warning from error ([0f4035d](https://github.com/marckraw/sb-mig/commit/0f4035d507ae9acaa957a7789f90254aafa6f9af))
628
-
629
-
630
-
631
- ## [1.3.5](https://github.com/marckraw/sb-mig/compare/v1.3.3...v1.3.5) (2020-02-28)
632
-
633
-
634
- ### feature
635
-
636
- * improve windows support ([258654e](https://github.com/marckraw/sb-mig/commit/258654ee30b7e44da91fd058cebf680ff552acc8))
637
-
638
- ### fix
639
-
640
- * typo in components.js generator ([e950f2c](https://github.com/marckraw/sb-mig/commit/e950f2caa3b7a6e369a8acbe2f47d540bfd91325))
641
-
642
-
643
-
644
- ## [1.3.3](https://github.com/marckraw/sb-mig/compare/v1.3.2...v1.3.3) (2020-02-26)
645
-
646
-
647
- ### fix
648
-
649
- * ordering of tasks in generating project ([f3ce9fc](https://github.com/marckraw/sb-mig/commit/f3ce9fceedd268a9f2e84b00b61e8d1ca910132f))
650
-
651
-
652
-
653
- ## [1.3.2](https://github.com/marckraw/sb-mig/compare/v1.3.1...v1.3.2) (2020-02-26)
654
-
655
-
656
- ### fix
657
-
658
- * .env and components.js generation was failing ([d6ac7f0](https://github.com/marckraw/sb-mig/commit/d6ac7f084f3892f2140fc64510e23b8d7f1137cb))
659
-
660
-
661
-
662
- ## [1.3.1](https://github.com/marckraw/sb-mig/compare/v1.3.0...v1.3.1) (2020-02-26)
663
-
664
-
665
- ### feature
666
-
667
- * add components.js generation file, and finish experimental generate feature ([a1e763f](https://github.com/marckraw/sb-mig/commit/a1e763ffc8a50f8e3a47e17dd8b1313c9634262d))
668
- * add generating project - beta functionality ([a23be49](https://github.com/marckraw/sb-mig/commit/a23be491bff5f81c86178abaa2708b888020b14a))
669
- * full solution for generating whole project ([8eb0772](https://github.com/marckraw/sb-mig/commit/8eb077234d72ac4a8d0c7cc011c77c41639d145f))
670
-
671
- ### packages
672
-
673
- * add camelcase and execa package ([ed3fb7e](https://github.com/marckraw/sb-mig/commit/ed3fb7eebd4faa2e30bc731f675c8c1ad061b886))
674
-
675
-
676
-
677
- # [1.3.0](https://github.com/marckraw/sb-mig/compare/v1.2.9...v1.3.0) (2020-02-25)
678
-
679
-
680
- ### docs
681
-
682
- * update readme with docs for syncing datasources ([18b5eff](https://github.com/marckraw/sb-mig/commit/18b5effc54f6afe851951af00ba5386170d7729e))
683
-
684
- ### feature
685
-
686
- * add adding/updating datasource entries: need cleanup and tests ([72e25c1](https://github.com/marckraw/sb-mig/commit/72e25c10c8f0310f06e6c2a07a09bedc6bd914cb))
687
- * add discover for .datasource.js ([9586e2f](https://github.com/marckraw/sb-mig/commit/9586e2f4376fd29ab17a3f646c9fb40e4c1100c2))
688
- * add getting all datasources, and getting datasource by name (1dimension) ([41a1222](https://github.com/marckraw/sb-mig/commit/41a12226fd9c69fb48cc96af6f4bf449b626ae57))
689
- * datasources support ready to use ([c58f48f](https://github.com/marckraw/sb-mig/commit/c58f48f97da27e492f84460f447f9b5c901fbc18))
690
-
691
- ### fix
692
-
693
- * change node-fetch to storyblok-js-client for get datasources ([13c0165](https://github.com/marckraw/sb-mig/commit/13c01657ba68aaece476cd3edc0b5a9656b39bf2))
694
- * remove and change not bad console logs ([ad3e5f4](https://github.com/marckraw/sb-mig/commit/ad3e5f47a7b06f31d21589d26959bf2f00ac9ecc))
695
-
696
-
697
-
698
- ## [1.2.9](https://github.com/marckraw/sb-mig/compare/v1.2.8...v1.2.9) (2020-02-21)
699
-
700
-
701
- ### fix
702
-
703
- * no-presets didn't work for ext sync-all ([9ea3c08](https://github.com/marckraw/sb-mig/commit/9ea3c08f083bc873efe09d116348bb6872dd5c89))
704
-
705
-
706
-
707
- ## [1.2.8](https://github.com/marckraw/sb-mig/compare/v1.2.7...v1.2.8) (2020-02-21)
708
-
709
-
710
- ### chore
711
-
712
- * add license ([b4f5595](https://github.com/marckraw/sb-mig/commit/b4f559556207f2282d31c7baaf80d36efa899010))
713
-
714
- ### docs
715
-
716
- * update readme with added no-preset option ([34842cd](https://github.com/marckraw/sb-mig/commit/34842cd689ea8bedd88464bed2bf815f791cbb78))
717
-
718
- ### feature
719
-
720
- * Add no-preset option to --sync and --sync-all command ([1dd76d4](https://github.com/marckraw/sb-mig/commit/1dd76d4bf5b817df81b49d43af1cd3b2dbe0c5fd))
721
-
722
- ### fix
723
-
724
- * rewrite any node-fetch to storyblok-js-client requests, to handle rate limits ([c7d117e](https://github.com/marckraw/sb-mig/commit/c7d117ea43bb2644393bd74e8e883411fa5d4813))
725
-
726
-
727
-
728
- ## [1.2.7](https://github.com/marckraw/sb-mig/compare/v1.2.6...v1.2.7) (2020-02-18)
729
-
730
-
731
- ### changelog
732
-
733
- * fix changelog reps ([53f8c91](https://github.com/marckraw/sb-mig/commit/53f8c912fb874196900532ff5bc5a7e778e828a4))
734
-
735
-
736
-
737
- ## [1.2.6](https://github.com/marckraw/sb-mig/compare/v1.2.0...v1.2.6) (2020-02-18)
738
-
739
- ### docs
740
-
741
- - add homepage ([e066e22](https://github.com/marckraw/sb-mig/commit/e066e2258d14cd858c059ed7b5f3160b66bc734e))
742
-
743
- ## [1.2.5](https://github.com/marckraw/sb-mig/compare/v1.2.4...v1.2.5) (2020-02-18)
744
-
745
- ### fix
746
-
747
- - debug command breaks sb-mig ([e1b3819](https://github.com/marckraw/sb-mig/commit/e1b3819b27e32e161c17e187fe4a7e4319322b5f))
748
-
749
- ## [1.2.4](https://github.com/marckraw/sb-mig/compare/v1.2.3...v1.2.4) (2020-02-18)
750
-
751
- ### debug
752
-
753
- - add debug command with some information ([36af2b4](https://github.com/marckraw/sb-mig/commit/36af2b4d75c282f213e304b26481f1f3df3275bb))
754
-
755
- ### docs
756
-
757
- - modify cli doc for --ext ([414547c](https://github.com/marckraw/sb-mig/commit/414547c5c97cfd27c65d0c93677c869e3feddd31))
758
-
759
- ## [1.2.3](https://github.com/marckraw/sb-mig/compare/v1.2.2...v1.2.3) (2020-02-18)
760
-
761
- ### feature
762
-
763
- - Add ability to --sync-all files with .sb.js extension ([333a70f](https://github.com/marckraw/sb-mig/commit/333a70fed32dd273e7d86155ecab1038bcfe8ee9))
764
-
765
- ## [1.2.2](https://github.com/marckraw/sb-mig/compare/v1.2.1...v1.2.2) (2020-02-18)
766
-
767
- ### fix
768
-
769
- - remove not existing function from exports ([88d0b8a](https://github.com/marckraw/sb-mig/commit/88d0b8a4634a53a2b2113732f0a0acf2d6e2efe5))
770
-
771
- ## [1.2.1](https://github.com/marckraw/sb-mig/compare/v1.1.17...v1.2.1) (2020-02-18)
772
-
773
- ### remove
774
-
775
- - support for not fully working solution to download .js files from github seed repo ([8b6ec00](https://github.com/marckraw/sb-mig/commit/8b6ec00403e4e72ea42791bf5aeebeb895d87d09))
776
-
777
- # [1.2.0](https://github.com/marckraw/sb-mig/compare/v1.1.18...v1.2.0) (2020-02-17)
778
-
779
- ### docs
780
-
781
- - Document new --sync --ext approach ([18bba3e](https://github.com/marckraw/sb-mig/commit/18bba3e3b36a54825db356e7a873cdc69624af87))
782
-
783
- ### feature
784
-
785
- - Add ability to sync with .sb.js extension ([5199806](https://github.com/marckraw/sb-mig/commit/51998062c716fb86407e89c6734ad1e4a2cd4107))
786
-
787
- ## [1.1.18](https://github.com/marckraw/sb-mig/compare/v1.1.16...v1.1.18) (2020-02-15)
788
-
789
- ### docs
790
-
791
- - Add develop section to readme ([2a0570e](https://github.com/marckraw/sb-mig/commit/2a0570eca4ae47246687f51f3acaf9263d76d243))
792
- - add some badges to readme ([ec8f6d1](https://github.com/marckraw/sb-mig/commit/ec8f6d149d6473f66a3cac285a4cd423a6043389))
793
-
794
- ## [1.1.17](https://github.com/marckraw/sb-mig/compare/v1.1.16...v1.1.17) (2020-02-06)
795
-
796
- ### fix
797
-
798
- - storyblok js client use by using custom endpoint if configured ([fac304c](https://github.com/marckraw/sb-mig/commit/fac304cea7cd961756deef87e51df9e70f5dc18c))
799
-
800
- ## [1.1.16](https://github.com/marckraw/sb-mig/compare/v1.1.15...v1.1.16) (2020-01-25)
801
-
802
- ## [1.1.15](https://github.com/marckraw/sb-mig/compare/v1.1.14...v1.1.15) (2020-01-25)
803
-
804
- ### fix
805
-
806
- - update notifier ([f84e53a](https://github.com/marckraw/sb-mig/commit/f84e53a1bb0edbd64c948dad533617efdd9c54c7))
807
-
808
- ## [1.1.14](https://github.com/marckraw/sb-mig/compare/v1.1.13...v1.1.14) (2020-01-25)
809
-
810
- ## [1.1.13](https://github.com/marckraw/sb-mig/compare/v1.1.12...v1.1.13) (2020-01-25)
811
-
812
- ### docs
813
-
814
- - add sync datasources to roadmap ([d68294f](https://github.com/marckraw/sb-mig/commit/d68294fe758d45b831e022d36edd39b07c5bedd9))
815
-
816
- ## [1.1.12](https://github.com/marckraw/sb-mig/compare/v1.1.11...v1.1.12) (2020-01-19)
817
-
818
- ### docs
819
-
820
- - add new points what next to roadmap ([03beb11](https://github.com/marckraw/sb-mig/commit/03beb110945615bbd762553825698b36880c477b))
821
-
822
- ## [1.1.11](https://github.com/marckraw/sb-mig/compare/v1.1.10...v1.1.11) (2020-01-14)
823
-
824
- ### docs
825
-
826
- - add basic example how to add fields section inside component ([edc2c56](https://github.com/marckraw/sb-mig/commit/edc2c56a06b07ee086c2cbc68fc66ff669984dea))
827
-
828
- ## [1.1.10](https://github.com/marckraw/sb-mig/compare/v1.1.9...v1.1.10) (2020-01-12)
829
-
830
- ### hotfix
831
-
832
- - fix content of readme ([22686b4](https://github.com/marckraw/sb-mig/commit/22686b4b648b908734d2ffaa55355a92ae9bb6a8))
833
-
834
- ## [1.1.9](https://github.com/marckraw/sb-mig/compare/v1.1.8...v1.1.9) (2020-01-11)
835
-
836
- ### hotfix
837
-
838
- - add .github workflows to .npmignore ([160a9fc](https://github.com/marckraw/sb-mig/commit/160a9fc5047a6c6d8a70ab0c582fda29bd50cf54))
839
- - add secret for npm ([15ea735](https://github.com/marckraw/sb-mig/commit/15ea735f229e6f2322bc024bb23cd47218a3bbe0))
840
- - fix github action test before publishing ([931b771](https://github.com/marckraw/sb-mig/commit/931b7711dea9b62d34cf851e590abe3383ee0345))
841
- - forget registry url.. ([c275173](https://github.com/marckraw/sb-mig/commit/c275173023c36da6a065d18d36aebc91a2c961d3))
842
-
843
- ## [1.1.8](https://github.com/marckraw/sb-mig/compare/v1.1.7...v1.1.8) (2020-01-11)
844
-
845
- ### buildAndDeploy
846
-
847
- - add github action for publishing ([d94938b](https://github.com/marckraw/sb-mig/commit/d94938b49a5757060b57fcb8c5ebefcb60b51df2))
848
- - add test before publish ([ed26feb](https://github.com/marckraw/sb-mig/commit/ed26feb0ff827c3ad02c0630983d5872663eba36))
849
- - github action to run tests and build ([588c196](https://github.com/marckraw/sb-mig/commit/588c196f38de924f80111f9546442d17eeb1da86))
850
-
851
- ## [1.1.7](https://github.com/marckraw/sb-mig/compare/v1.1.6...v1.1.7) (2020-01-11)
852
-
853
- ### chore
854
-
855
- - add publish command for patch,minor,major versions ([cf2776b](https://github.com/marckraw/sb-mig/commit/cf2776bfaa607db9c7ce0114ac503e0e9bbc162a))
856
-
857
- ## [1.1.6](https://github.com/marckraw/sb-mig/compare/v1.1.5...v1.1.6) (2020-01-11)
858
-
859
- ### chore
860
-
861
- - update package ([200160d](https://github.com/marckraw/sb-mig/commit/200160dd83fb12293d507bfa1a00d886a0d52ddb))
862
-
863
- ## [1.1.5](https://github.com/marckraw/sb-mig/compare/v1.1.4...v1.1.5) (2020-01-11)
864
-
865
- ### chore
866
-
867
- - update package ([292ab6b](https://github.com/marckraw/sb-mig/commit/292ab6bcb7dc2d7055572b3f35c7ad15421f2b7e))
868
-
869
- ## [1.1.4](https://github.com/marckraw/sb-mig/compare/v1.1.3...v1.1.4) (2020-01-11)
870
-
871
- ### chore
872
-
873
- - update package ([f02a4d5](https://github.com/marckraw/sb-mig/commit/f02a4d5c336bcc93716a1f3cfdacdb6a27e6b366))
874
-
875
- ## [1.1.3](https://github.com/marckraw/sb-mig/compare/v1.1.2...v1.1.3) (2020-01-11)
876
-
877
- ### chore
878
-
879
- - update package.json ([0dd1da8](https://github.com/marckraw/sb-mig/commit/0dd1da869b856b3fde794223aeb061a7ddad1e14))
880
-
881
- ### publish
882
-
883
- - some scripts for different deploys ([f6ae621](https://github.com/marckraw/sb-mig/commit/f6ae621c76f7721d034cb94f8ec499fd7cfaf68f))
884
-
885
- ### testing
886
-
887
- - add test command to prepublish ([c2bc39f](https://github.com/marckraw/sb-mig/commit/c2bc39fe7c41f348249deeda2ede5a1b0b0f00d4))
888
- - set up jest testing environment ([977b088](https://github.com/marckraw/sb-mig/commit/977b08836e3cb79e1932dc4fcd4eebeb375ac904))
889
-
890
- ## [1.1.2](https://github.com/marckraw/sb-mig/compare/v1.1.1...v1.1.2) (2020-01-11)
891
-
892
- ### chore
893
-
894
- - add gulpfile to gitignore ([d43fd32](https://github.com/marckraw/sb-mig/commit/d43fd32afb2b65210a6ab0ffb2d0c3e7a80505ad))
895
-
896
- ## [1.1.1](https://github.com/marckraw/sb-mig/compare/v1.1.0...v1.1.1) (2020-01-11)
897
-
898
- ### chore
899
-
900
- - udpate readme ([f23fd0f](https://github.com/marckraw/sb-mig/commit/f23fd0fdbfbb606236ef683899ff43aaf06023e1))
901
-
902
- # [1.1.0](https://github.com/marckraw/sb-mig/compare/v1.0.2...v1.1.0) (2020-01-11)
903
-
904
- ### chore
905
-
906
- - format everything with prettier ([1f868d3](https://github.com/marckraw/sb-mig/commit/1f868d31ed149b8c641e27c195094d024498885c))
907
-
908
- ### performance
909
-
910
- - add gulp task to minify files, without bundling ([5b29959](https://github.com/marckraw/sb-mig/commit/5b2995904df355585dd4f232ec27bfe4ee4ac110))
911
-
912
- ## [1.0.2](https://github.com/marckraw/sb-mig/compare/v1.0.1...v1.0.2) (2020-01-11)
913
-
914
- ### chore
915
-
916
- - add rule to prettier, format some files with it ([7f6e1e6](https://github.com/marckraw/sb-mig/commit/7f6e1e65c843524e2e9bcdf1351ecaae2e404827))
917
- - remove not needed packages, move conventional-changelog to devDependencies ([7f66b86](https://github.com/marckraw/sb-mig/commit/7f66b869025a47fd318540d8761aa04ed8625861))
918
- - update gitignore ([6ebd23d](https://github.com/marckraw/sb-mig/commit/6ebd23d35470945d34e0e2f45d2f4e7c00a26359))
919
-
920
- ## 1.0.1 (2020-01-11)
921
-
922
- ### chore
923
-
924
- - add conventional-changelog to packages ([5d3d6a8](https://github.com/marckraw/sb-mig/commit/5d3d6a8902da64026b44c9f16a7c1ce02e46e786))
925
- - add prettierrc file and add .vscode to gitignore ([1ffd542](https://github.com/marckraw/sb-mig/commit/1ffd54297dddb8e722d295b0218a488d4ce308a4))
926
- - add symboles to Logger error, success, warning ([aa6849b](https://github.com/marckraw/sb-mig/commit/aa6849b12b066c66efd5ee54bdc82c16707f3f93))
927
-
928
- ### feature
929
-
930
- - major refactor for better dev exp - functionality stays (except deprecated migrate which is removed) ([a280005](https://github.com/marckraw/sb-mig/commit/a2800050ca81f4449920a3fb1569b05510e788a2))
931
-
932
- # [1.0.0](https://github.com/marckraw/sb-mig/compare/v0.3.1...v1.0.0) (2020-01-10)
933
-
934
- ### docs
935
-
936
- - imrpvoe documentation, explain what can be done, and how to handle presets ([c50f44f](https://github.com/marckraw/sb-mig/commit/c50f44f7a37c81b86e63a5a82bd2a08df686b550))
937
-
938
- ### feature
939
-
940
- - major refactor for better dev exp - functionality stays (except deprecated migrate which is removed) ([a280005](https://github.com/marckraw/sb-mig/commit/a2800050ca81f4449920a3fb1569b05510e788a2))
941
-
942
- ## [0.3.1](https://github.com/marckraw/sb-mig/compare/v0.3.0...v0.3.1) (2020-01-10)
943
-
944
- ### cleanup
945
-
946
- - refactor creation files to helper functions, add config option for main sb-mig folder ([979d6f6](https://github.com/marckraw/sb-mig/commit/979d6f6e7a628cdb9f5ff79de9c5e178922fcc8a))
947
-
948
- # [0.3.0](https://github.com/marckraw/sb-mig/compare/v0.2.3...v0.3.0) (2020-01-09)
949
-
950
- ### feature
951
-
952
- - add get all groups and get specific group ([8056558](https://github.com/marckraw/sb-mig/commit/80565584c296bdd8095ba1e6850db7a76f181174))
953
-
954
- ## 0.2.5 (2020-01-09)
955
-
956
- ## 0.2.4 (2020-01-09)
957
-
958
- ### chore
959
-
960
- - add generating changelog ([382b657](https://github.com/marckraw/sb-mig/commit/382b657269da26060f1dcd86ac9a643c1e25de76))
961
-
962
- ## [0.2.3](https://github.com/marckraw/sb-mig/compare/v0.2.2...v0.2.3) (2020-01-08)
963
-
964
- ## [0.2.2](https://github.com/marckraw/sb-mig/compare/v0.2.1...v0.2.2) (2020-01-08)
965
-
966
- ### chore
967
-
968
- - update readme ([7496c93](https://github.com/marckraw/sb-mig/commit/7496c93c9bf3bf52040c7e6cc271d41f4f117ffc))
969
-
970
- ## [0.2.1](https://github.com/marckraw/sb-mig/compare/v0.2.0...v0.2.1) (2020-01-08)
971
-
972
- ### feature
973
-
974
- - add support for custom config ([17240f0](https://github.com/marckraw/sb-mig/commit/17240f02221052820fd2d09a621f1b82e6f8ac9b))
975
-
976
- # [0.2.0](https://github.com/marckraw/sb-mig/compare/v0.1.2...v0.2.0) (2020-01-08)
977
-
978
- ### chore
979
-
980
- - remobe not needed file ([a8e7965](https://github.com/marckraw/sb-mig/commit/a8e7965d54de4d004ece6a8da1a47397fcd1c4b3))
981
- - remove not used file ([5d3476b](https://github.com/marckraw/sb-mig/commit/5d3476b73dac792e4dda385d853f76f8c8e2de5d))
982
- - remove not used file ([e8f8496](https://github.com/marckraw/sb-mig/commit/e8f8496667a8e0746c9867f333b159d867b9cf7a))
983
-
984
- ### feature
985
-
986
- - Add selective component syncing ([5b7bc8d](https://github.com/marckraw/sb-mig/commit/5b7bc8d71cf45d63573b5d5b122a7be2bec1827d))
987
-
988
- ### fix
989
-
990
- - not working main file ([9e3f308](https://github.com/marckraw/sb-mig/commit/9e3f3088afe36506330e706470c10a367d2b23b0))
991
-
992
- ## [0.1.2](https://github.com/marckraw/sb-mig/compare/v0.1.1...v0.1.2) (2020-01-08)
993
-
994
- ### chore
995
-
996
- - fix changelog creation ([21d0789](https://github.com/marckraw/sb-mig/commit/21d0789c730630091613a47afd07a97348ef4502))