Restructure project directories (#333)

`/client/web` -> `/frontend`
`/client/cli` -> *delete for now*
`/client/native` -> *delete for now*
`/core/editor` -> `/editor`
`/core/document` -> `/graphene`
`/core/renderer` -> `/charcoal`
`/core/proc-macro` -> `/proc-macros` *(now plural)*
This commit is contained in:
Keavon Chambers 2021-08-07 05:17:18 -07:00
parent 434695d578
commit 53ad105f57
239 changed files with 197 additions and 224 deletions

View file

@ -23,13 +23,13 @@ jobs:
node-version: '14.x'
- name: 🚧 Install Node dependencies
run: cd client/web && npm install
run: cd frontend && npm install
- name: 🌐 Build Graphite web code
run: cd client/web && npm run build
run: cd frontend && npm run build
- name: 👕 Lint Graphite web formatting
run: export NODE_ENV=production && cd client/web && npm run lint
run: export NODE_ENV=production && cd frontend && npm run lint
- name: 🔬 Check Rust formatting
run: cargo fmt --all -- --check