Skip to content

Commit c45a893

Browse files
committed
3.0.0
1 parent c0e0938 commit c45a893

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

.eslintrc.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
{
22
"extends": "eslint-config-atomic",
3-
"ignorePatterns": ["dist/", "**/node_modules/**/*", "package/", "dist-nuclide/", "commons-atom/", "commons-ui/", ".rollup.cache/"]
3+
"ignorePatterns": [
4+
"dist/",
5+
"**/node_modules/**/*",
6+
"package/",
7+
"dist-nuclide/",
8+
"commons-atom/",
9+
"commons-ui/",
10+
".rollup.cache/"
11+
]
412
}

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 3.0.0
2+
3+
- feat(breaking): convert ViewContainer components from React to Solid. See `atom-ide-datatips` for an example of their usage.
4+
- fix: update dependencies
5+
16
### 2.6.0
27

38
Added new utility functions:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "atom-ide-base",
3-
"version": "2.6.1",
3+
"version": "3.0.0",
44
"main": "package/main.js",
55
"types": "./types-packages/main.d.ts",
66
"files": [

spec/main-spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ describe("tests", () => {
3030
}, timeout + 1000)
3131

3232
it("Installation", function () {
33-
const allPackages = atom.packages.getAvailablePackageNames();
33+
const allPackages = atom.packages.getAvailablePackageNames()
3434
deps.forEach(async (dep) => {
35-
expect(allPackages.includes(dep)).toBeTruthy();
35+
expect(allPackages.includes(dep)).toBeTruthy()
3636
await atom.packages.activatePackage(dep)
3737
expect(atom.packages.isPackageLoaded(dep)).toBeTruthy()
3838
})

0 commit comments

Comments
 (0)