Skip to content

Commit

Permalink
3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 9, 2021
1 parent c0e0938 commit c45a893
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"extends": "eslint-config-atomic",
"ignorePatterns": ["dist/", "**/node_modules/**/*", "package/", "dist-nuclide/", "commons-atom/", "commons-ui/", ".rollup.cache/"]
"ignorePatterns": [
"dist/",
"**/node_modules/**/*",
"package/",
"dist-nuclide/",
"commons-atom/",
"commons-ui/",
".rollup.cache/"
]
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.0.0

- feat(breaking): convert ViewContainer components from React to Solid. See `atom-ide-datatips` for an example of their usage.
- fix: update dependencies

### 2.6.0

Added new utility functions:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atom-ide-base",
"version": "2.6.1",
"version": "3.0.0",
"main": "package/main.js",
"types": "./types-packages/main.d.ts",
"files": [
Expand Down
4 changes: 2 additions & 2 deletions spec/main-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ describe("tests", () => {
}, timeout + 1000)

it("Installation", function () {
const allPackages = atom.packages.getAvailablePackageNames();
const allPackages = atom.packages.getAvailablePackageNames()
deps.forEach(async (dep) => {
expect(allPackages.includes(dep)).toBeTruthy();
expect(allPackages.includes(dep)).toBeTruthy()
await atom.packages.activatePackage(dep)
expect(atom.packages.isPackageLoaded(dep)).toBeTruthy()
})
Expand Down

0 comments on commit c45a893

Please sign in to comment.