3.0.2 • Published 6 years ago

canopy-sofe-extensions v3.0.2

Weekly downloads
127
License
ISC
Repository
github
Last release
6 years ago

canopy-sofe-extensions

canopy-sofe-extensions is an npm package that is part of canopy common dependencies. It does two things:

1) Provides special sofe overrides of integ, stage, prod, or simply a port number (for localhost) 2) Exports a function, calculatePublicPath, that helps you set the webpack public path for a sofe override correctly. Setting the public path correctly is required for doing code splitting in a sofe service.

Example usage

// In your webpack entry file
import {calculatePublicPath} from 'canopy-sofe-extensions'

__webpack_public_path__ = calculatePublicPath("name-of-my-sofe-service")

If you need to call dynamic import() immediately in a file that gets executed before the entry file, try the following

// In your webpack entry file
import './set-public-path.js' // do this import at the very very top to ensure it is executed first
// In set-public-path.js
import {calculatePublicPath} from 'canopy-sofe-extensions'

__webpack_public_path__ = calculatePublicPath("name-of-my-sofe-service")
3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.1.3

7 years ago

2.1.2

7 years ago

2.1.1

7 years ago