all files / src/constants/language/ errors.js

100% Statements 13/13
100% Branches 0/0
100% Functions 0/0
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 7111×                                                                                                                      
export const BUNDLE_BUILD_ERROR = `
Something went wrong while attempting to modify the bundles.
The following file:
"{{FILENAME}}"
is invalid (actual error listed below).
It needs to be fixed before UniStack can proceed.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_BUNDLE_BUILD_ERROR = `
Something went wrong while attempting to modify a bundle.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_BUNDLER_INITIALIZATION_ERROR = `
Something went wrong while attempting to initialize the bundlers responsible for
producing the node and browser bundles.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_SERVER_ERROR = `
Something went wrong while attempting to modify the state of the environment
server. This might not be much cause for alarm, but it might cause some
port-in-use errors if the server was not closed properly.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_ENV_DIRECTORY_ERROR = `
Something went wrong while attempting to access the environment directory.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_ENV_COPY_ERROR = `
Something went wrong while attempting to place the necessary files in the
environment.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_ENV_PACKAGE_JSON_ERROR = `
Something went wrong while attempting to open the environment's package.json
file.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_PACKAGE_INSTALL_ERROR = `
Something went wrong while attempting to install the initial packages.
Actual Error: {{ERROR}}
`
 
export const UNKNOWN_ENV_SERVER_SHUT_DOWN_ERROR = `
Something went wrong while attempting to shut down the environment server.
Actual Error: {{ERROR}}
`
 
export const INVALID_DYNAMIC_COMPONENT = `
Cannot subscribe component without an update method.
`
 
export const LIKELY_NOT_UNI_ENV = `
The initiator was unable to verify that this is a valid UniStack environment and
aborted. If you believe this to be a mistake, please open the package.json file
located in the root of the environment and set the "unistack" property to a
truthy value. If the "unistack" property is already set to a truthy value,
please verify that you are not in the wrong directory.
`
 
export const INSTALLATION_DIRECTORY_NOT_EMPTY = `
The initiator was unable to install UniStack because the installation directory
is not empty. Please empty the directory and try again. Hidden files are okay.
`