You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2023. It is now read-only.
)}) must be created and set in the \`ATOM_ACCESS_TOKEN\` environment variable on your CI environment.
12
16
13
17
Please visit your account page on [atom.io](https://atom.io/account) and to set it in the \`ATOM_ACCESS_TOKEN\` environment variable on your CI environment.`,
14
-
}),
15
-
ENOAPMCLI: ()=>({
18
+
};
19
+
}
20
+
21
+
exportfunctionENOAPMCL(){
22
+
return{
16
23
message: 'The apm CLI must be installed.',
17
24
details: `The \`apm\` command line has to be installed in your CI environment and available in the \`PATH\` environment varialbe.
18
25
19
26
See [Atom installation](${linkify('README.md#atom-installation')}) for more details.`,
20
-
}),
21
-
ENOPKGNAME: ()=>({
27
+
};
28
+
}
29
+
30
+
exportfunctionENOPKGNAM(){
31
+
return{
22
32
message: 'Missing `name` property in `package.json`.',
23
33
details: `The \`package.json\`'s [name](https://docs.npmjs.com/files/package.json#name) property is required in order to publish an Atom package.
24
34
25
35
Please make sure to add a valid \`name\` for your package in your \`package.json\`.`,
26
-
}),
27
-
ENOPKG: ()=>({
36
+
};
37
+
}
38
+
39
+
exportfunctionENOPK(){
40
+
return{
28
41
message: 'Missing `package.json` file.',
29
42
details: `A [package.json file](https://docs.npmjs.com/files/package.json) at the root of your project is required to publish an Atom package.
30
43
31
44
Please follow the [npm guideline](https://docs.npmjs.com/getting-started/creating-node-modules) to create a valid \`package.json\` file.`,
0 commit comments