Skip to content

Commit

Permalink
Merge pull request #122 from atom-community/upstream_master
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Jul 22, 2021
2 parents 1d83151 + b13ff19 commit 363cbed
Show file tree
Hide file tree
Showing 11 changed files with 469 additions and 395 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
- macos-latest
- windows-latest
node_version:
- 10
- 12
- 14
node_arch:
Expand All @@ -29,7 +28,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install Node
uses: actions/setup-node@v2-beta
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.node_arch }}
Expand Down
2 changes: 1 addition & 1 deletion BUNDLED_NODE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.14.1
v12.18.3
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# empty appveyor
build: off

branches:
only:
- non-existing
141 changes: 57 additions & 84 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
"dependencies": {
"@atom/plist": "0.4.4",
"asar-require": "0.3.0",
"async": "~3.2.0",
"async": "^3.2.0",
"colors": "~1.4.0",
"first-mate": "^7.4.1",
"first-mate": "^7.4.3",
"fs-plus": "3.x",
"git-utils": "^5.7.1",
"git-utils": "^5.7.2",
"glob": "^7.1.6",
"hosted-git-info": "^3.0.7",
"keytar": "^6.0.1",
"keytar": "^7.7.0",
"mv": "2.1.1",
"ncp": "~2.0.0",
"npm": "^6.14.9",
Expand Down
4 changes: 3 additions & 1 deletion spec/init-spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ describe "apm init", ->
runs ->
expect(fs.existsSync(themePath)).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles', 'base.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles', 'colors.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles', 'syntax-variables.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles', 'syntax.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'styles', 'editor.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'index.less'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'README.md'))).toBeTruthy()
expect(fs.existsSync(path.join(themePath, 'package.json'))).toBeTruthy()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe "__PackageName__ grammar", ->
atom.packages.activatePackage("language-__package-name__")

runs ->
grammar = atom.syntax.grammarForScopeName("source.__package-name__")
grammar = atom.grammars.grammarForScopeName("source.__package-name__")

it "parses the grammar", ->
expect(grammar).toBeTruthy()
Expand Down
4 changes: 3 additions & 1 deletion templates/theme/index.less
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
@import "./styles/base.less";
@import "styles/syntax-variables.less";
@import "styles/syntax.less";
@import "styles/editor.less";
Loading

0 comments on commit 363cbed

Please sign in to comment.