1.0.2 • Published 1 year ago

release-please-example v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

šŸ§‘ā€šŸ’» Developing

The library is fully dockerized 🐳, if we want to start the app in development mode, we just need to run:

docker-compose up -d

This development mode with work with hot-reload and exposing a debug port, the 9229, so later we can connect from our editor to it.

Now, you should be able to start debugging configuring using your IDE. For example, if you are using vscode, you can create a .vscode/launch.json file with the following config:

{
  "version": "0.1.0",
  "configurations": [
    {
      "type": "node",
      "request": "attach",
      "name": "Attach to docker",
      "restart": true,
      "port": 9229,
      "remoteRoot": "/app"
    }
  ]
}

When you want to stop developing, you can stop the project running:

docker-compose down

āš™ļø Building

npm run build

šŸ’… Linting

To run the linter you can execute:

npm run lint

And for trying to fix lint issues automatically, you can run:

npm run lint:fix
1.0.2

1 year ago

1.0.1

1 year ago

0.1.0

3 years ago

0.0.35

3 years ago

0.0.33

3 years ago

0.0.8

3 years ago

0.7.0

3 years ago

0.6.0

3 years ago

0.5.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago