1.0.18 • Published 4 years ago

@nilsmich/ui-component-lib v1.0.18

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
4 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

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.12

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago