uni-run 1.0.12 → 1.0.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.
@@ -69,6 +69,14 @@ exports.default = [
69
69
  return ['bash', ...args];
70
70
  },
71
71
  }),
72
+ new Executor_1.default('Fish Shell', {
73
+ extensions: ['fish'],
74
+ checkInstallation: ['fish', '--version'],
75
+ installMessage: 'Please install Fish from https://fishshell.com',
76
+ run(args) {
77
+ return ['fish', ...args];
78
+ },
79
+ }),
72
80
  new Executor_1.default('Lua', {
73
81
  extensions: ['lua'],
74
82
  checkInstallation: ['lua', '-v'],
@@ -64,6 +64,14 @@ export default [
64
64
  return ['bash', ...args];
65
65
  },
66
66
  }),
67
+ new Executor('Fish Shell', {
68
+ extensions: ['fish'],
69
+ checkInstallation: ['fish', '--version'],
70
+ installMessage: 'Please install Fish from https://fishshell.com',
71
+ run(args) {
72
+ return ['fish', ...args];
73
+ },
74
+ }),
67
75
  new Executor('Lua', {
68
76
  extensions: ['lua'],
69
77
  checkInstallation: ['lua', '-v'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uni-run",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Universal Runner for many language",
5
5
  "scripts": {
6
6
  "dev": "npmize dev",