Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
2984a3b0
Commit
2984a3b0
authored
Jun 29, 2021
by
tizah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial setup for moving terminal to react
parent
bf29aec3
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
120 additions
and
1 deletion
+120
-1
.babelrc
libs/remix-ui/terminal/.babelrc
+4
-0
.eslintrc
libs/remix-ui/terminal/.eslintrc
+19
-0
README.md
libs/remix-ui/terminal/README.md
+7
-0
package.json
libs/remix-ui/terminal/package.json
+4
-0
index.ts
libs/remix-ui/terminal/src/index.ts
+1
-0
remix-ui-terminal.css
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
+0
-0
remix-ui-terminal.tsx
libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx
+16
-0
tsconfig.json
libs/remix-ui/terminal/tsconfig.json
+16
-0
tsconfig.lib.json
libs/remix-ui/terminal/tsconfig.lib.json
+13
-0
nx.json
nx.json
+3
-0
tsconfig.json
tsconfig.json
+2
-1
workspace.json
workspace.json
+35
-0
No files found.
libs/remix-ui/terminal/.babelrc
0 → 100644
View file @
2984a3b0
{
"presets": ["@nrwl/react/babel"],
"plugins": []
}
libs/remix-ui/terminal/.eslintrc
0 → 100644
View file @
2984a3b0
{
"env": {
"browser": true,
"es6": true
},
"extends": "../../../.eslintrc",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
}
libs/remix-ui/terminal/README.md
0 → 100644
View file @
2984a3b0
# remix-ui-terminal
This library was generated with
[
Nx
](
https://nx.dev
)
.
## Running unit tests
Run
`nx test remix-ui-terminal`
to execute the unit tests via
[
Jest
](
https://jestjs.io
)
.
libs/remix-ui/terminal/package.json
0 → 100644
View file @
2984a3b0
{
"name"
:
"remix-ui-terminal"
,
"version"
:
"0.0.1"
}
libs/remix-ui/terminal/src/index.ts
0 → 100644
View file @
2984a3b0
export
*
from
'./lib/remix-ui-terminal'
;
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
0 → 100644
View file @
2984a3b0
libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx
0 → 100644
View file @
2984a3b0
import
React
from
'react'
import
'./remix-ui-terminal.css'
/* eslint-disable-next-line */
export
interface
RemixUiTerminalProps
{}
export
const
RemixUiTerminal
=
(
props
:
RemixUiTerminalProps
)
=>
{
return
(
<
div
>
<
h1
>
Welcome to remix-ui-terminal!
</
h1
>
</
div
>
)
}
export
default
RemixUiTerminal
;
libs/remix-ui/terminal/tsconfig.json
0 → 100644
View file @
2984a3b0
{
"extends"
:
"../../../tsconfig.json"
,
"compilerOptions"
:
{
"jsx"
:
"react"
,
"allowJs"
:
true
,
"esModuleInterop"
:
true
,
"allowSyntheticDefaultImports"
:
true
},
"files"
:
[],
"include"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.lib.json"
}
]
}
libs/remix-ui/terminal/tsconfig.lib.json
0 → 100644
View file @
2984a3b0
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"outDir"
:
"../../../dist/out-tsc"
,
"types"
:
[
"node"
]
},
"files"
:
[
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts"
,
"../../../node_modules/@nrwl/react/typings/image.d.ts"
],
"exclude"
:
[
"**/*.spec.ts"
,
"**/*.spec.tsx"
],
"include"
:
[
"**/*.js"
,
"**/*.jsx"
,
"**/*.ts"
,
"**/*.tsx"
]
}
nx.json
View file @
2984a3b0
...
...
@@ -101,6 +101,9 @@
},
"remix-ui-checkbox"
:
{
"tags"
:
[]
},
"remix-ui-terminal"
:
{
"tags"
:
[]
}
}
}
tsconfig.json
View file @
2984a3b0
...
...
@@ -40,7 +40,8 @@
"@remix-ui/file-explorer"
:
[
"libs/remix-ui/file-explorer/src/index.ts"
],
"@remix-ui/workspace"
:
[
"libs/remix-ui/workspace/src/index.ts"
],
"@remix-ui/static-analyser"
:
[
"libs/remix-ui/static-analyser/src/index.ts"
],
"@remix-ui/checkbox"
:
[
"libs/remix-ui/checkbox/src/index.ts"
]
"@remix-ui/checkbox"
:
[
"libs/remix-ui/checkbox/src/index.ts"
],
"@remix-ui/terminal"
:
[
"libs/remix-ui/terminal/src/index.ts"
]
}
},
"exclude"
:
[
"node_modules"
,
"tmp"
]
...
...
workspace.json
View file @
2984a3b0
...
...
@@ -760,6 +760,41 @@
}
}
}
},
"remix-ui-terminal"
:
{
"root"
:
"libs/remix-ui/terminal"
,
"sourceRoot"
:
"libs/remix-ui/terminal/src"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"linter"
:
"eslint"
,
"tsConfig"
:
[
"libs/remix-ui/terminal/tsconfig.lib.json"
],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-ui/terminal/**/*"
]
}
},
"build"
:
{
"builder"
:
"@nrwl/web:package"
,
"options"
:
{
"outputPath"
:
"dist/libs/remix-ui/terminal"
,
"tsConfig"
:
"libs/remix-ui/terminal/tsconfig.lib.json"
,
"project"
:
"libs/remix-ui/terminal/package.json"
,
"entryFile"
:
"libs/remix-ui/terminal/src/index.ts"
,
"external"
:
[
"react"
,
"react-dom"
],
"babelConfig"
:
"@nrwl/react/plugins/bundle-babel"
,
"rollupConfig"
:
"@nrwl/react/plugins/bundle-rollup"
,
"assets"
:
[
{
"glob"
:
"README.md"
,
"input"
:
"."
,
"output"
:
"."
}
]
}
}
}
}
},
"cli"
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment