Skip to content

Commit

Permalink
Merge pull request #69 from bskinn/relocate-scripts
Browse files Browse the repository at this point in the history
Relocate scripts to `scripts/` directory
  • Loading branch information
bskinn authored Mar 29, 2024
2 parents 2f3f6fc + 0d98d79 commit 1a8b8a9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ serves to distinguish between multiple releases created on the same day.

### _Unreleased_

#### Features
#### Internal

- Relocated dev helper scripts to `scripts/` folder.


### Features at CHANGELOG Creation

- TypeScript codebase, webpacked, manifested, and zipped. Builds to a
single-file artifact ready to be loaded into Firefox's 'Load Temporary Add-on'
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Brian Skinn
Copyright (c) 2023-2024 Brian Skinn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"clean-all": "run-p dev:clean prod:clean dist:clean",
"dist": "run-s build-prod dist:clean dist:pack",
"format:code": "npx prettier -w .",
"format:mermaid": "npx ts-node make-mermaid.ts",
"format:mermaid": "npx ts-node scripts/make-mermaid.ts",
"format:tocs": "run-p format:toc:*",
"format:toc:CONTRIBUTING": "npx markdown-toc -i CONTRIBUTING.md",
"format:toc:ARCHITECTURE": "npx markdown-toc -i ARCHITECTURE.md",
"format:toc:README": "npx markdown-toc -i README.md",
"dev:clean": "node -e \"fs = require('fs'); fs.rmSync('build-dev', {recursive: true, force: true})\"",
"dev:build": "npx webpack --config webpack.config.dev.js",
"dev:assets": "npx copyfiles assets/**/* build-dev",
"dev:manifest": "node render_manifest.js build-dev",
"dev:manifest": "node scripts/render_manifest.js build-dev",
"prod:clean": "node -e \"fs = require('fs'); fs.rmSync('build-prod', {recursive: true, force: true})\"",
"prod:build": "npx webpack --config webpack.config.prod.js",
"prod:manifest": "node render_manifest build-prod",
"prod:manifest": "node scripts/render_manifest.js build-prod",
"prod:assets": "npx copyfiles assets/**/* build-prod",
"dist:clean": "node -e \"fs = require('fs'); fs.rmSync('dist', {recursive: true, force: true})\"",
"dist:pack": "node zip-dist.js"
"dist:pack": "node scripts/zip-dist.js"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1a8b8a9

Please sign in to comment.