1.0.18 • Published 3 years ago

@nilsmich/ui-component-lib v1.0.18

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

What it does

This is a UI component Lib that I use for private projects. It's based on Material UI and only works with next.js

How to use

See example code in private Git. Basically add file: next.config.js with the content

// https://www.npmjs.com/package/next-transpile-modules
const withTM = require('next-transpile-modules')([
  '@nilsmich/ui-component-lib'
])

const withBundleAnalyzer = require('@next/bundle-analyzer')({
  enabled: process.env.ANALYZE === 'true'
})

module.exports = withTM(
  withBundleAnalyzer({
    future: {
      webpack5: true,
    },
    webpack: function (config, options) {
      config.experiments = {};
      return config;
    }
  })
)

And install next-transpile-modules in the project that consumes the lib.

Publishing

npm publish --access public for initial publishing.

unpublish

npm unpublish -f

Interesting resources

quite nice articles

some more intersting reading

1.0.18

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.12

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago