Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions brand-sample/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
!dist
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this was needed because of the top-level .gitignore in this repo. Removing it won't break anything, but if someone were to delete the dist dir and commit the removal we'd need to force-add it to get it back.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

right, fixed, thanks

node_modules
paragon
File renamed without changes.
2 changes: 1 addition & 1 deletion brand-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ hooks.Filters.ENV_PATCHES.add_item(
2. Navigate to your Tutor config directory (you can find this by running `tutor config printroot`)
3. From your config directory, navigate to `env/plugins/paragon` (the full path on my dev machine is `~/.local/share/tutor-main/env/plugins/paragon`)
4. You should see some directories in there, find the `theme-sources` directory.
5. Place this theme's [`color.json` file](./src/tokens/src/themes/light/global/color.json) in the appropriate subdirectory of the `theme-sources` directory.
5. Place this theme's [`color.json` file](./tokens/src/themes/light/global/color.json) in the appropriate subdirectory of the `theme-sources` directory.
```sh
$ tree ~/.local/share/tutor-main/env/plugins/paragon
├── [...]
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions brand-sample/src/package.json → brand-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
"scripts": {
"build-tokens": "paragon build-tokens --source ./tokens/src --build-dir ./paragon/css --source-tokens-only --exclude-core",
"build-scss": "paragon build-scss --themesPath ./paragon/css/themes --defaultThemeVariants light --excludeCore",
"build": "make build",
"build:watch": "nodemon --ignore dist -x \"make build\"",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run build-tokens && npm run build-scss",
"build:watch": "nodemon --ignore dist -x \"npm run build\"",
"paragon:help": "paragon help"
},
"devDependencies": {
Expand Down
3 changes: 0 additions & 3 deletions brand-sample/src/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions brand-sample/src/Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions brand-sample/src/README.md

This file was deleted.

Loading