@loftyshaky/shared 1.8.0 → 1.9.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/js/apps.js CHANGED
@@ -14,11 +14,12 @@ const apps = [
14
14
  'Stock Screener',
15
15
  'Advanced Extension Reloader',
16
16
  'Search Enhancer for Google',
17
+ 'Close Other Tabs Extended',
17
18
  'Clear New Tab',
18
19
  'Base64 font-face',
19
20
  ];
20
21
 
21
- const app_types = ['package', 'package', 'app', 'app', 'app', 'ext', 'ext', 'ext'];
22
+ const app_types = ['package', 'package', 'app', 'app', 'app', 'ext', 'ext', 'ext', 'ext', 'ext'];
22
23
 
23
24
  const create_app_paths = () =>
24
25
  apps.map((project) => path.join(projects_path.q, project, project_name.transform({ project })));
@@ -16,7 +16,13 @@ class TaskScheduler {
16
16
  !is_windows
17
17
  ) {
18
18
  if (is_windows) {
19
- childProcess.execSync(`SCHTASKS.EXE /RUN /TN "Unlock ${package_name} dist dir"`);
19
+ try {
20
+ childProcess.execSync(
21
+ `SCHTASKS.EXE /RUN /TN "Unlock ${package_name} dist dir"`,
22
+ );
23
+ } catch {
24
+ /* empty */
25
+ }
20
26
  }
21
27
 
22
28
  if (remove_dist) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loftyshaky/shared",
3
3
  "description": "-",
4
- "version": "1.8.0",
4
+ "version": "1.9.0",
5
5
  "author": "loftyshaky",
6
6
  "license": "MIT",
7
7
  "repository": {