Skip to content

Commit

Permalink
chore: Move scoped packages into a scoped directory per convention.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Apr 24, 2018
1 parent 92fb074 commit 58a45d2
Show file tree
Hide file tree
Showing 150 changed files with 12,186 additions and 11,232 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ These packages are what we expect others to have dependencies on. We are careful
* `template-api` - The template analysis API.
* `element-analysis`: The element analysis API.
* `resolve-cascade` - A library that produces a resolved cascade for CSS
selectors against a DOM without using a browser. [README](./packages/opticss/README.md)
selectors against a DOM without using a browser. [README](./packages/resolve-cascade/README.md)
* `util` - Common utilities and data structures that we share across our project.

### Internal Dependencies:
Expand All @@ -32,7 +32,7 @@ these.

* `simple-template` - A custom template language we use for testing OptiCSS.
* `attr-analysis-dsl` - A custom DSL for expressing attribute analysis succinctly.
* `code-style`: The coding styleguide and linters for OptiCSS. [README](./packages/code-style/README.md)
* `code-style`: The coding styleguide and linters for OptiCSS. [README](./packages/@opticss/code-style/README.md)

### Miscellany
* `demo-app`: An interactive demo of OptiCSS.
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"hoist": "**",
"useWorkspaces": false,
"packages": [
"packages/*"
"packages/*",
"packages/@opticss/*"
],
"command": {
"publish": {
Expand Down
16 changes: 8 additions & 8 deletions opticss.code-workspace
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"folders": [
{
"path": "packages/attr-analysis-dsl"
"path": "packages/@opticss/attr-analysis-dsl"
},
{
"path": "packages/demo-app"
"path": "packages/@opticss/demo-app"
},
{
"path": "packages/element-analysis"
"path": "packages/@opticss/element-analysis"
},
{
"path": "packages/opticss"
Expand All @@ -16,16 +16,16 @@
"path": "packages/resolve-cascade"
},
{
"path": "packages/simple-template"
"path": "packages/@opticss/simple-template"
},
{
"path": "packages/template-api"
"path": "packages/@opticss/template-api"
},
{
"path": "packages/util"
"path": "packages/@opticss/util"
},
{
"path": "packages/code-style"
"path": "packages/@opticss/code-style"
},
{
"path": "docs"
Expand All @@ -50,4 +50,4 @@
"unoptimized"
]
}
}
}
Loading

0 comments on commit 58a45d2

Please sign in to comment.