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

Commit

Permalink
move examples out of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
tol-is committed May 1, 2020
1 parent 66c7593 commit a1badb3
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 15 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@custom-media --viewport-medium (width >= 50rem);

@import './reset.pcss';

/*
.article-content {
rhythm: 2;
Expand All @@ -12,7 +13,7 @@
article {
color: red;
matrix-columns: 7;
matrix-rows: 14;
matrix-row-height: 14;
matrix-gap: 3;
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@raster-ui/example-postcss",
"name": "demo-postcss",
"private": true,
"version": "0.0.1",
"description": "",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@raster-ui/example-tailwindcss",
"name": "demo-tailwindcss",
"private": true,
"version": "0.0.1",
"description": "",
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"start": "npm-run-all --parallel common:dev postcss:dev test",
"test": "jest --watch --onlyChanged --watchman --forceExit --detectOpenHandles --notify --notifyMode=failure",
"docs": "npm-run-all --parallel common:dev docs:dev",
"postcss": "npm-run-all --parallel common:dev postcss:dev example:postcss:dev test",
"tailwind": "npm-run-all --parallel themes:dev common:dev tailwind:dev example:tailwind:dev",
"postcss": "npm-run-all --parallel common:dev postcss:dev demo:postcss:dev test",
"tailwind": "npm-run-all --parallel common:dev tailwind:dev demo:tailwind:dev",
"common:dev": "npm-run-all --parallel types:dev core:dev utils:dev",
"themes:dev": "npm-run-all --parallel theme:plex:dev && theme:test:dev",
"core:dev": "yarn workspace @raster-ui/core develop",
Expand All @@ -32,10 +32,10 @@
"types:dev": "yarn workspace @raster-ui/types develop",
"postcss:dev": "yarn workspace @raster-ui/postcss develop",
"tailwind:dev": "yarn workspace @raster-ui/tailwindcss develop",
"example:postcss:dev": "yarn workspace @raster-ui/example-postcss develop",
"example:tailwind:dev": "yarn workspace @raster-ui/example-tailwindcss develop",
"theme:plex:dev": "yarn workspace @raster-ui/theme-plex develop",
"theme:test:dev": "yarn workspace @raster-ui/theme-test develop"
"theme:test:dev": "yarn workspace @raster-ui/theme-test develop",
"demo:postcss:dev": "yarn workspace demo-postcss develop",
"demo:tailwind:dev": "yarn workspace demo-tailwindcss develop"
},
"devDependencies": {
"@testing-library/cypress": "^5.0.1",
Expand Down
14 changes: 7 additions & 7 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"quotemark": [true, "single"],
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"jsx-no-multiline-js": false
}
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"quotemark": [true, "single"],
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"jsx-no-multiline-js": false
}
}

0 comments on commit a1badb3

Please sign in to comment.