Skip to content

Commit 21e734a

Browse files
committed
Merge branch 'github-actions'
2 parents 584188a + 57d140d commit 21e734a

File tree

5 files changed

+113
-111
lines changed

5 files changed

+113
-111
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
## 2.16.0
271271
* Add D support
272272
* Add Rust support
273-
* Fix broken ANSI/HTML escaping [#238](https://github.com/rgbkrk/atom-script/issues/238)
273+
* Fix broken ANSI/HTML escaping [#238](https://github.com/atom-ide-community/atom-script/issues/238)
274274
* Turn on colored diagnostics for the C language family
275275

276276
## 2.15.1

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
**Run code in Atom!**
66

7-
:warning: [We need maintainers and developers to keep atom script from growing stagnant! Please see #1550 for background](https://github.com/rgbkrk/atom-script/issues/1550) :warning:
8-
97
Run scripts based on file name, a selection of code, or by line number.
108

119
![](https://cloud.githubusercontent.com/assets/1694055/3226201/c458acbc-f067-11e3-84a0-da27fe334f5e.gif)
@@ -113,7 +111,7 @@ Currently supported grammars are:
113111
| [Zsh] | Yes | Yes | | | Runs if your `SHELL` or `#!` line is `zsh`. |
114112

115113
[-wow]: https://atom.io/packages/language-lua-wow
116-
[#70]: https://github.com/rgbkrk/atom-script/pull/70
114+
[#70]: https://github.com/atom-ide-community/atom-script/pull/70
117115
[`binutils`]: https://www.gnu.org/software/binutils/
118116
[`gfortran`]: https://gcc.gnu.org/wiki/GFortran
119117
[`ghc`]: https://haskell.org/ghc
@@ -317,7 +315,7 @@ atom .
317315

318316
to get it to run with the *current* directory as the default place to run scripts from.
319317

320-
If you *really* wish to open atom from a launcher/icon, see [this issue for a variety of workarounds that have been suggested](https://github.com/rgbkrk/atom-script/issues/61#issuecomment-37337827).
318+
If you *really* wish to open atom from a launcher/icon, see [this issue for a variety of workarounds that have been suggested](https://github.com/atom-ide-community/atom-script/issues/61#issuecomment-37337827).
321319

322320
## Usage
323321

lib/grammars/database.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
message = "SQL requires setting 'Script: Run Options' directly. See https://github.com/rgbkrk/atom-script/tree/master/examples/hello.sql for further information."
1+
message = "SQL requires setting 'Script: Run Options' directly. See https://github.com/atom-ide-community/atom-script/tree/master/examples/hello.sql for further information."
22

33
module.exports =
44

lib/script-view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default class ScriptView extends MessagePanelView {
106106
createGitHubIssueLink(argType, lang) {
107107
// const title = `Add ${argType} support for ${lang}`;
108108
// const body = `##### Platform: \`${process.platform}\`\n---\n`;
109-
// let encodedURI = encodeURI(`https://github.com/rgbkrk/atom-script/issues/new?title=${title}&body=${body}`);
109+
// let encodedURI = encodeURI(`https://github.com/atom-ide-community/atom-script/issues/new?title=${title}&body=${body}`);
110110
// // NOTE: Replace "#" after regular encoding so we don't double escape it.
111111
// encodedURI = encodedURI.replace(/#/g, '%23');
112112

@@ -147,7 +147,7 @@ export default class ScriptView extends MessagePanelView {
147147
this.p({ class: 'block' }, `Command not configured for ${lang}!`);
148148
this.p({ class: 'block' }, () => {
149149
this.text('Add an ');
150-
this.a({ href: `https://github.com/rgbkrk/atom-script/issues/new?title=Add%20support%20for%20${lang}` }, 'issue on GitHub');
150+
this.a({ href: `https://github.com/atom-ide-community/atom-script/issues/new?title=Add%20support%20for%20${lang}` }, 'issue on GitHub');
151151
this.text(' or send your own Pull Request.');
152152
});
153153
});

package.json

Lines changed: 107 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,117 @@
55
"private": false,
66
"description": "Run code in Atom!",
77
"author": "Kyle Kelley <[email protected]>",
8+
"repository": "https://github.com/atom-ide-community/atom-script",
9+
"license": "Apache-2.0",
10+
"engines": {
11+
"atom": ">=0.174.0"
12+
},
13+
"activationCommands": {
14+
"atom-text-editor": [
15+
"script:run",
16+
"script:run-by-line-number",
17+
"script:run-options",
18+
"script:run-with-profile"
19+
]
20+
},
21+
"dependencies": {
22+
"ansi-to-html": "^0.4.2",
23+
"atom-message-panel": "1.3.1",
24+
"atom-space-pen-views": "^2.0.3",
25+
"babel-preset-env": "^1.6.0",
26+
"strip-ansi": "^3.0.0",
27+
"underscore": "^1.8.3",
28+
"uuid": "^3.0.1"
29+
},
30+
"optionalDependencies": {
31+
"babel-cli": "^6.26.0",
32+
"coffeescript": "^2"
33+
},
34+
"devDependencies": {
35+
"babel-eslint": "^7.1.1",
36+
"eslint": "^4.18.2",
37+
"eslint-config-airbnb-base": "^10.0.1",
38+
"eslint-plugin-import": "^2.2.0",
39+
"tempy": "^1.0.0"
40+
},
41+
"providedServices": {
42+
"default-script-runtime": {
43+
"description": "Provides default runtime that's configurable through Atom editor",
44+
"versions": {
45+
"0.1.0": "provideDefaultRuntime"
46+
}
47+
},
48+
"provide-blank-runtime": {
49+
"description": "Provides a Runtime instance that's intended to be more programatically configurable",
50+
"versions": {
51+
"0.1.0": "provideBlankRuntime"
52+
}
53+
}
54+
},
55+
"scripts": {
56+
"lint": "eslint .",
57+
"lint:fix": "eslint . --fix",
58+
"test": "atom test --space"
59+
},
60+
"babel": {
61+
"presets": [
62+
[
63+
"env",
64+
{
65+
"targets": {
66+
"node": "current"
67+
}
68+
}
69+
]
70+
]
71+
},
72+
"keywords": [
73+
"script",
74+
"runner",
75+
"Bash",
76+
"Behat Feature",
77+
"Clojure",
78+
"Coffeescript",
79+
"CoffeeScript (Literate)",
80+
"Cucumber (Gherkin)",
81+
"Elixir",
82+
"Erlang",
83+
"F#",
84+
"FSharp",
85+
"F*",
86+
"FStar",
87+
"Go",
88+
"Groovy",
89+
"Haskell",
90+
"Javascript",
91+
"Julia",
92+
"LaTeX",
93+
"Lua",
94+
"mongoDB",
95+
"newLISP",
96+
"Perl",
97+
"PHP",
98+
"PowerShell",
99+
"Python",
100+
"RSpec",
101+
"Ruby",
102+
"Ruby on Rails",
103+
"Scala",
104+
"Swift",
105+
"run",
106+
"Applescript",
107+
"code",
108+
"LAMMPS"
109+
],
8110
"contributors": [
9111
{
10112
"name": "Kyle Kelley",
11113
"email": "[email protected]"
12114
},
115+
{
116+
"name": "Amin Yahyaabadi",
117+
"email": "[email protected]"
118+
},
13119
{
14120
"name": "GeneLocklin",
15121
"email": "[email protected]"
@@ -278,107 +384,5 @@
278384
"name": "Bruno Durán",
279385
"email": "[email protected]"
280386
}
281-
],
282-
"repository": "https://github.com/rgbkrk/atom-script",
283-
"keywords": [
284-
"script",
285-
"runner",
286-
"Bash",
287-
"Behat Feature",
288-
"Clojure",
289-
"Coffeescript",
290-
"CoffeeScript (Literate)",
291-
"Cucumber (Gherkin)",
292-
"Elixir",
293-
"Erlang",
294-
"F#",
295-
"FSharp",
296-
"F*",
297-
"FStar",
298-
"Go",
299-
"Groovy",
300-
"Haskell",
301-
"Javascript",
302-
"Julia",
303-
"LaTeX",
304-
"Lua",
305-
"mongoDB",
306-
"newLISP",
307-
"Perl",
308-
"PHP",
309-
"PowerShell",
310-
"Python",
311-
"RSpec",
312-
"Ruby",
313-
"Ruby on Rails",
314-
"Scala",
315-
"Swift",
316-
"run",
317-
"Applescript",
318-
"code",
319-
"LAMMPS"
320-
],
321-
"license": "Apache-2.0",
322-
"engines": {
323-
"atom": ">=0.174.0"
324-
},
325-
"activationCommands": {
326-
"atom-text-editor": [
327-
"script:run",
328-
"script:run-by-line-number",
329-
"script:run-options",
330-
"script:run-with-profile"
331-
]
332-
},
333-
"dependencies": {
334-
"ansi-to-html": "^0.4.2",
335-
"atom-message-panel": "1.3.1",
336-
"atom-space-pen-views": "^2.0.3",
337-
"babel-preset-env": "^1.6.0",
338-
"strip-ansi": "^3.0.0",
339-
"underscore": "^1.8.3",
340-
"uuid": "^3.0.1"
341-
},
342-
"optionalDependencies": {
343-
"babel-cli": "^6.26.0",
344-
"coffeescript": "^2"
345-
},
346-
"devDependencies": {
347-
"babel-eslint": "^7.1.1",
348-
"eslint": "^4.18.2",
349-
"eslint-config-airbnb-base": "^10.0.1",
350-
"eslint-plugin-import": "^2.2.0",
351-
"tempy": "^1.0.0"
352-
},
353-
"providedServices": {
354-
"default-script-runtime": {
355-
"description": "Provides default runtime that's configurable through Atom editor",
356-
"versions": {
357-
"0.1.0": "provideDefaultRuntime"
358-
}
359-
},
360-
"provide-blank-runtime": {
361-
"description": "Provides a Runtime instance that's intended to be more programatically configurable",
362-
"versions": {
363-
"0.1.0": "provideBlankRuntime"
364-
}
365-
}
366-
},
367-
"scripts": {
368-
"lint": "eslint .",
369-
"lint:fix": "eslint . --fix",
370-
"test": "atom test --space"
371-
},
372-
"babel": {
373-
"presets": [
374-
[
375-
"env",
376-
{
377-
"targets": {
378-
"node": "current"
379-
}
380-
}
381-
]
382-
]
383-
}
387+
]
384388
}

0 commit comments

Comments
 (0)