
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@wework/oui
Advanced tools
npm install @wework/oui --save
|-- app/
|-- assets/
|-- fonts/
|-- images/
|-- components/
|-- ...presentational components
|-- index.js
|-- dist/
|-- docs/
|-- sections/
|-- ...sections displaying examples of components
|-- index.html
|-- index.js
|-- styleguide.jsx
|-- styleguide.scss
|-- webpack/
|-- base.js
|-- development.js
|-- entries.js
|-- env.js
|-- paths.js
|-- production.js
app/assets/components
is where we create our presentational components (ie. button, grid, footer)dist
- generated by npm run prepublish
or npm install
-- lets us use Oui as a librarydocs
- the documentation/display of our styleguide
sections
- where to include example usage of componentsstyleguide.jsx
- a view of all sectionsstyleguide.scss
- styleguide-specific sasswebpack
- config!// PostCSS plugins
const cssnext = require('postcss-cssnext');
const postcssImport = require('postcss-import');
const postcssReporter = require('postcss-reporter');
const lostGrid = require('lost');
module: {
loaders: [
test: /\.s?css$/,
loader: 'style-loader!css-loader?modules&importLoaders=2&sourceMap!postcss-loader!sass-loader?sourceMap',
exclude: /(vendor|node_modules)\//,
],
},
sassLoader: {
includePaths: [ jsPath, nodeModulesPath ]
},
postcss: () => [
postcssImport({ addDependencyTo: webpack }),
lostGrid(),
cssnext({
browsers: [ 'last 2 versions', 'IE > 10' ],
features: {
calc: false,
},
}),
postcssReporter({
clearMessages: true,
}),
],
FAQs
WeWork.com Styleguide
The npm package @wework/oui receives a total of 0 weekly downloads. As such, @wework/oui popularity was classified as not popular.
We found that @wework/oui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.