registry=https://registry.npmjs.org/
npm login
is executed. This will forward you to the browser to login. After login is completed, you can verify your session via npm whoami
. npm init
command starts creating a package.json file by asking to fill in several attributes. You can pass -y flag to set all fields to default values. Eventually when the package is publisg these attributes will be seen on the npm repo like author, version and dependency values. A sample package.json file would look like: npm install --save-dev typescript
. We will use it only for development purposes, so we can add it as a dev-dependency (-D flag does the same). We will see dependency types below. After we add the dependency, it should be in the package.json:
export const registerCommand = () => {
Cypress.Commands.add("goToPage", (url) => {
goToPage(url)
})...
}
export * from './my_functions'
. Notice that extension is not needed to address the file here. One more reminder is, these files are generally collected under a reasonably named folder such as src, dist or lib.npx tsc –init
. This will create a tsconfig file for us. One example is below:
npx tsc
. After compiling we will see the generated files in the OutDir. You may have some errors like unresolved cy commands. Since you are running outside the cypress folder, it is not in the relevant namescape. But no worries, the dependency will be imported into some other projects and already be executed with Cypress.
"main": "src/index.js"
. Beware that it is not .ts anymore, since we compiled it is js file now. Now we can do npm publish
. If you set the package name which is already taken, you will get an error. (it might be fixed later, but at first it was confusing to me, i got 403 when i tried to publish a conflicting package name.)
npm i mesutplugin
. i is for install, so this command will install the dependency. We will see that package & package.lock files are updated and node_modules folder includes the downloaded dependency. In the package.lock file, we can see the npm repo addresses (registry/nexus) which we discussed in the first part.import {registerCommand} from 'mesutplugin'
registerCommand()