Skip to content

Commit c0e0938

Browse files
authored
Merge pull request #75 from atom-community/solid
2 parents 4f52ca1 + 0abf89c commit c0e0938

18 files changed

Lines changed: 162 additions & 183 deletions

.eslintrc.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
{
22
"extends": "eslint-config-atomic",
3-
"ignorePatterns": ["dist/", "node_modules/", "./dist-nuclide", "./commons-atom", "./commons-ui", "./.rollup.cache/"],
4-
"env": {
5-
"atomtest": true,
6-
"es6": true,
7-
"node": true,
8-
"browser": true,
9-
"jasmine": true,
10-
"jest": true
11-
}
3+
"ignorePatterns": ["dist/", "**/node_modules/**/*", "package/", "dist-nuclide/", "commons-atom/", "commons-ui/", ".rollup.cache/"]
124
}

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
- name: Install base dependencies
4545
run: |
4646
apm install
47-
./node_modules/.bin/atom-package-deps .
4847
npm run prepare.base
4948
5049
- name: Run tests 👩🏾‍💻

nuclide/.eslintrc.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"extends": "eslint-config-atomic",
3+
"ignorePatterns": ["**/node_modules/**/*"],
4+
"env": {
5+
"atomtest": true,
6+
"es6": true,
7+
"node": true,
8+
"browser": true,
9+
"jasmine": true,
10+
"jest": true
11+
},
12+
"rules": {
13+
"no-shadow": "off",
14+
"no-undef": "off",
15+
"no-eq-null": "off",
16+
"eqeqeq": "off",
17+
"require-await": "off"
18+
},
19+
"settings": {
20+
"import/ignore": [
21+
"\\.jsx?$"
22+
]
23+
}
24+
25+
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
"test": "atom --test spec",
3232
"clean": "shx rm -rf package commons-atom commons-ui commons",
3333
"tsc.commons-ui": "tsc -p src-commons-ui/tsconfig.json",
34-
"dev.commons-ui": "tsc -w -p src-commons-ui/tsconfig.json",
35-
"build.commons-ui": "npm run tsc.commons-ui",
34+
"build.commons-ui": "npm run tsc.commons-ui && babel ./src-commons-ui --out-dir ./commons-ui --config-file ./src-commons-ui/babel.config.json --extensions .tsx,.ts",
3635
"tsc.commons-atom": "tsc -p src-commons-atom/tsconfig.json",
3736
"dev.commons-atom": "tsc -w -p src-commons-atom/tsconfig.json",
3837
"build.commons-atom": "npm run tsc.commons-atom",
@@ -87,7 +86,6 @@
8786
"atom-package-deps": "^7.2.3",
8887
"classnames": "^2.3.1",
8988
"dompurify": "^2.2.9",
90-
"etch": "^0.14.1",
9189
"react": "^17.0.2",
9290
"react-dom": "^17.0.2",
9391
"rxjs": "^6.6.7"
@@ -103,6 +101,7 @@
103101
"atom-jasmine3-test-runner": "^5.2.6",
104102
"babel-jest": "^26",
105103
"babel-preset-atomic": "^4.1.0",
104+
"babel-preset-solid": "^0.26.5",
106105
"build-commit": "0.1.4",
107106
"chance": "^1.1.7",
108107
"cross-env": "7.0.3",
@@ -123,6 +122,7 @@
123122
"rollup": "2.51.0",
124123
"rollup-plugin-atomic": "^2.3.2",
125124
"shx": "0.3.3",
125+
"solid-js": "^0.26.5",
126126
"temp": "^0.9.4",
127127
"typescript": "^4.3.2"
128128
},

package/index-8481519b.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/index-8481519b.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)