Compare commits

...

4 Commits

@ -0,0 +1,25 @@
dist
.solid
.output
.vercel
.netlify
netlify
/CHANGELOG.md
# dependencies
/node_modules
# IDEs and editors
/.idea
.project
.classpath
*.launch
.settings/
# Temp
gitignore
# System Files
.DS_Store
Thumbs.db

@ -2,6 +2,19 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [0.2.0](https://git.lufrai.com/rappli/rappli/compare/v0.1.0...v0.2.0) (2022-06-28)
### Features
* ignore CHANGELOG.md in prettier reformatting ([e02f5d0](https://git.lufrai.com/rappli/rappli/commit/e02f5d0eddd2f8ec161d91be389d3ab9ef1b4320))
* use custom ignore file instead of gitignore for prettier ([df1565c](https://git.lufrai.com/rappli/rappli/commit/df1565c942673cfa616e3148e6a390a080b71256))
### Bug Fixes
* use proper cwd in rappli binary ([6065c1e](https://git.lufrai.com/rappli/rappli/commit/6065c1ebf306889031bbea95c43d8497df014ca7))
## 0.1.0 (2022-06-28)

@ -1,13 +1,20 @@
#!/usr/bin/env node
import { exec } from "node:child_process";
const process = exec("npm run start", (error, stdout, stderr) => {
if (error) {
console.error(`${error}`);
return;
import { resolve } from "node:path";
import { fileURLToPath } from "url";
const process = exec(
"npm run start",
{ cwd: resolve(fileURLToPath(import.meta.url), "..") },
(error, stdout, stderr) => {
if (error) {
console.error(`${error}`);
return;
}
console.log(`${stdout}`);
console.error(`${stderr}`);
}
console.log(`${stdout}`);
console.error(`${stderr}`);
});
);
process.stdout.on("data", (data) => console.log(data));
process.stderr.on("data", (data) => console.error(data));

4
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "rappli",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "rappli",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT",
"dependencies": {
"solid-start": "v0.1.0-alpha.89",

@ -1,12 +1,12 @@
{
"name": "rappli",
"version": "0.1.0",
"version": "0.2.0",
"bin": "./bin/rappli.js",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"reformat": "prettier --write --ignore-path .gitignore .",
"reformat": "prettier --write .",
"release": "standard-version"
},
"authors": [

Loading…
Cancel
Save