Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10 from Gum-Joe/move-to-electron-webpack
Browse files Browse the repository at this point in the history
After electron-compile stopped working (electron-userland/electron-compile#287), we decided to move to using electron-webpack. After some issues (electron-userland/electron-webpack#83), we managed to get the app running.

Major changes:
- address-bar is now part of explorer
- Core logic is now in `tara-core`
- Explorer is now less buggy
- Now using electron-webpack instead of electron-compile.

Related Issues & PRs:
#12 
#13 
#14 
#15 

Special thanks to @loopmode for advice & help!
  • Loading branch information
Gum-Joe authored May 6, 2018
2 parents 9a1cd64 + 853b8f5 commit 64ea23b
Show file tree
Hide file tree
Showing 525 changed files with 112,575 additions and 13,912 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/jpeg","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/jpeg","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/jpeg","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/jpeg","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/png","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"application/x-font-ttf","dependentFiles":[]}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"mimeType":"image/jpeg","dependentFiles":[]}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .cache/compiler-info.json.gz
Binary file not shown.
Binary file not shown.
12 changes: 6 additions & 6 deletions .compilerc
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"application/javascript": {
"presets": [
[
"@babel/preset-env",
"env",
{
"targets": {
"electron": "1.8.1"
"electron": "1.6.11"
}
}
],
"@babel/preset-react"
"react"
],
"plugins": [
"@babel/plugin-transform-async-to-generator",
Expand All @@ -33,14 +33,14 @@
"application/javascript": {
"presets": [
[
"@babel/preset-env",
"env",
{
"targets": {
"electron": "1.8.1"
"electron": "1.6.11"
}
}
],
"@babel/preset-react"
"react"
],
"plugins": [
"@babel/plugin-transform-async-to-generator",
Expand Down
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Files for docker to ignore
node_modules
src/packages/*/node_modules
dist
log
.vs
.cache
.vscode
7 changes: 5 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ rules:
import/extensions: 1
import/prefer-default-export: 1
import/no-mutable-exports: 1
import/newline-after-import: 0
indent:
- 1
- 2
- 0
- 4
react/jsx-indent: 0
linebreak-style: 0
jsx-a11y/no-noninteractive-element-interactions: 1
quotes:
Expand All @@ -44,6 +46,7 @@ rules:
camelcase: 0
operator-linebreak: 0
no-return-await: 0
eol-last: 0
valid-jsdoc:
- 1
- prefer:
Expand Down
6 changes: 6 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 5858
},
{
"type": "node",
"request": "launch",
Expand Down
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Dockerfile to isolate a tara instance for testing

# Setup env
FROM node:latest
ENV NODE_ENV development

# Copy code
RUN mkdir -p /build/tara
COPY . /build/tara
WORKDIR /build/tara

RUN ./scripts/build.sh

CMD yarn start
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ I was tired of the lack of features in Windows's file explorer, whether that be
At the moment, only Windows is supported to speed up development. Linux builds should follow once the main feature set is in.

# Building
`yarn && yarn run start`
`./scripts/build.sh`
**Note**: Currently there are issues building tara. This will be resolved at a later date.
Loading

0 comments on commit 64ea23b

Please sign in to comment.