Skip to content

Commit

Permalink
chore: add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
colbywhite committed Mar 1, 2023
1 parent e482e0a commit 2415c3e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2023-02-28

### Changed

- Updated to [Remix v1.13.0](https://github.com/remix-run/remix/releases/tag/remix%401.13.0)

### Added

- Leverage Remix's built-in Tailwind support

## [0.1.0] - 2019-02-15

### Added

- Minimal Remix stack to serve as a starting point for demos and debugging
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@
},
"engines": {
"node": ">=14"
}
},
"version": "0.2.0"
}
10 changes: 8 additions & 2 deletions remix.init/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,16 @@ async function main({ rootDirectory }) {

const packageJson = await fs.readFile(PACKAGE_JSON_PATH, "utf-8");

// Parse the package file and rename the application name
// remove CHANGELOG
const CHANGELOG_PATH = path.join(rootDirectory, "CHANGELOG.md");
await fs.rm(CHANGELOG_PATH, { force: true });

// Parse the package file and
// - rename the application name
// - remove version
const newPackageJson =
JSON.stringify(
sort({ ...JSON.parse(packageJson), name: APP_NAME }),
sort({ ...JSON.parse(packageJson), name: APP_NAME, version: undefined }),
null,
2
) + "\n";
Expand Down

0 comments on commit 2415c3e

Please sign in to comment.