diff --git a/.changeset/40aa9fc2/changes.json b/.changeset/40aa9fc2/changes.json new file mode 100644 index 0000000..0c9990d --- /dev/null +++ b/.changeset/40aa9fc2/changes.json @@ -0,0 +1,4 @@ +{ + "releases": [{ "name": "@brisk-docs/website", "type": "patch" }], + "dependents": [] +} diff --git a/.changeset/40aa9fc2/changes.md b/.changeset/40aa9fc2/changes.md new file mode 100644 index 0000000..18f63a7 --- /dev/null +++ b/.changeset/40aa9fc2/changes.md @@ -0,0 +1 @@ +- testing changeset \ No newline at end of file diff --git a/scripts/changeset-server.js b/scripts/changeset-server.js new file mode 100644 index 0000000..43cc337 --- /dev/null +++ b/scripts/changeset-server.js @@ -0,0 +1,14 @@ +const express = require('express'); + +const app = express(); +const port = 5000; + +app.use(express.json()); + +app.get('/', (req, res) => res.send('Hello World!')); +app.post('/payload', (req, res) => { + // res.send('Hello World!'); + res.send(req.body); +}); + +app.listen(port, () => console.log(`Example app listening on port ${port}!`)); \ No newline at end of file