Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tacc/core-styles

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tacc/core-styles

CSS source and processor for TACC Core-CMS and Core-Portal.

  • 0.7.0-alpha
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
210
decreased by-38.42%
Maintainers
1
Weekly downloads
 
Created
Source

TACC Core Styles

The shared styles for TACC WMA Workspace Portals & Websites

Notice: Currently only Core CMS is using these styles.

  • Core CMS, the base CMS code for TACC WMA CMS Websites

External Project Usage

CLI

Usage: core-styles [options] [command]

Options:
  -V, --version      output the version number
  -h, --help         display help for command

Commands:
  build [options]    build stylesheets with TACC standard process:
  - "post-css" plugins
  - custom input path
  - custom output path
  - custom configs
  - prepend build id

  help [command]     display help for command
Build Command
Usage: core-styles build [options]

build stylesheets with TACC standard process:
- "post-css" plugins
- custom input path
- custom output path
- custom configs
- prepend build id

Options:
  -i, --input <path>               parse source at which path¹
  -o, --output <path>              output CSS files to which path¹
  -v, --verbose                    print more info during build process
  -c, --custom-configs <paths...>  extend base config with YAML files²³
  -b, --build-id <identifier>      any value to identify the build (default: version of app)
  -m, --base-mirror-dir <path>     if input folder structure is mirrored, this path is not⁴
  -h, --help                       display help for command

Notes:
  ¹ Folder structure of "--input-dir" mirrored in "--output-dir" i.e.

    given input
    - "input_dir/x.css"
    - "input_dir/sub_dir_a/y.css"
    - "input_dir"
    - "input_dir/**/*"

    expect output
    - "output_dir/x.css"
    - "output_dir/sub_dir_a/y.css"
    - "output_dir/..." (all files from input not in sub-directories)
    - "output_dir/.../..." (all files from input as nested)

  ² The file formats are like ".postcssrc.yml" from
    https://github.com/postcss/postcss-load-config#postcssrc

  ³ The first file is merged on top of the base config.
    Each successive file overwrites the file before it.

  ⁴ Given '-i "a/b*" -o "x/" -m "a/"' output is "x/b/...".
    Given '-i "a/b*" -o "x/" -m "a/b/"' output is "x/...".
    Given '-i "a/b*" -o "x/" -m "not-a/"' output is "x/abs-path-to-input/...".

Module

  1. Install the package with any package manager e.g.:
  • npm install @tacc/core-styles
  • yarn add @tacc/core-styles
  1. Import stylesheets of either type:
    • pre-compiled, from /dist
    • source files, from /src/lib
Build Script
const buildStylesheets = require('core-styles');

buildStylesheets(
  // Parse CSS files from which directory (required)
  `path/to/your/css/src`,
  // Output CSS files to which directory (required)
  `path/to/put/css/output`, {
    // List of YAML config files (optional)
    // (The first file is merged on top of the base config.)
    // (Each successive file overwrites the file before it.)
    // SEE: https://github.com/postcss/postcss-load-config#postcssrc
    customConfigs: [
      // The "base" config is `/.postcssrc.base.yml`
      `path/to/custom/configthat/extends/base/.postcssrc.yml`,
      `path/to/custom/config/that/extends/above/.postcssrc.yml`
    ],
    // Print more info from build log (optional, default: false)
    verbose: true,
    // Print version of this software (optional, default: false)
    version: true,
    // Extension of CSS files to parse (optional, default: "css")
    fileExt: 'css',
    // Any value to help identify the build (optional, default: app version)
    buildId: process.env.npm_package_version + someUniqueId
  }
);

Local Development Setup

Prequisites for Building the Styles

  • Nodejs 16.x

Future: The Core Styles will be rendered via a pattern library software.

Code Configuration

Code configuration happens in repos that use these styles.

Previewing the Styles

  1. Install the dependencies:

    npm ci
    

Future:

  1. Build stylesheets + Run the pattern library:

    npm start
    
  2. Open the web interface.

    The build command will output the URL (and may even open it for you).

Source Files

If you changes files in a src/lib/ directory, you may need to follow some of these steps.

Quick Start
  1. (optional) Make changes to /src/lib files.

  2. Build the styles: npm run build

    Future: 2. Build and preview the styles: npm start

  3. (to debug) Review respective /dist files' content.

How to Just Build Stylesheets

You can build stylesheets from source files in src/lib directory to compiled files in dist directory.

  1. (Optional) Set version (for preserved comment):

    npm run version -- --build-id="$(git describe --always)"
    
  2. Build stylesheets:

    npm run build
    

Testing

Plugin testing is done manually. Run npm run build from root folder in this project, then review output in /dist/_tests.css, to ensure plugins are working correctly.

Future: Style testing is done manually. Run npm start from root folder in this project, then review output at web interface, to ensure styles are rendering correctly.

Production Deployment

The Core Styles are not deployed alone yet. ¹

For now, the stylesheets are acquired or accessed by other repositories.

RepoUsage
Core CMSvia CLI installed on test branch
Core CMS Pattern Librarynot accessing styles yet ¹

¹ A repo that is, or will be, in Core CMS Pattern Library should load these styles and build a pattern library.

Contributing

Development Workflow

We use a modifed version of GitFlow as our development workflow. Our development site (accessible behind the TACC Network) is always up-to-date with main, while the production site is built to a hashed commit tag.

  • Feature branches contain major updates, bug fixes, and hot fixes with respective branch prefixes:
    • task/ for features and updates
    • bug/ for bugfixes
    • fix/ for hotfixes

Best Practices

Sign your commits (see this link for help)

Publishing Workflow

Only authorized team members may publish.

  1. (one time) Login to npm i.e. npm login.
  2. Create new branch for version bump.
  3. Update CHANGELOG.md.
  4. Update version in package.json.
  5. Update version in package-lock.json (e.g. npm i --package-lock-only).
  6. Commit, push, PR, review, merge.
  7. Publish to NPM via npm publish --access public.

Notice: Project build will automatically occur before publish.

Resources

FAQs

Package last updated on 03 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc