From 7806a592f994dfbf5e59677b39fb0ed481e94aff Mon Sep 17 00:00:00 2001 From: Miriam Suzanne Date: Thu, 12 Sep 2019 14:08:00 -0600 Subject: [PATCH 1/3] v0.1.0-beta.1 --- .gitignore | 2 ++ CHANGELOG.md | 7 ++++++- quotes.css => css/quotes.css | 0 remedy.css => css/remedy.css | 0 reminders.css => css/reminders.css | 0 package.json | 17 +++++++++++++++++ 6 files changed, 25 insertions(+), 1 deletion(-) rename quotes.css => css/quotes.css (100%) rename remedy.css => css/remedy.css (100%) rename reminders.css => css/reminders.css (100%) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index e43b0f9..88ed440 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .DS_Store +docs/ +node_modules/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a50cd3..ea416d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Changelog & Release Notes -## v0.1.0 - unreleased +## v0.1.0-beta.1 - 9/12/2019 +This is an incomplete set of remedies, +and still very likely to change - +but you have to start somewhere. + +- Move stylsheets into `css/` directory - Organize the existing proposed & discussed remedies into three categories: - Universally recommended remedies in `remedy.css` - Optional remedies worth considering in `reminders.css` diff --git a/quotes.css b/css/quotes.css similarity index 100% rename from quotes.css rename to css/quotes.css diff --git a/remedy.css b/css/remedy.css similarity index 100% rename from remedy.css rename to css/remedy.css diff --git a/reminders.css b/css/reminders.css similarity index 100% rename from reminders.css rename to css/reminders.css diff --git a/package.json b/package.json new file mode 100644 index 0000000..42bfb17 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "cssremedy", + "version": "0.1.0-beta.1", + "description": "Start your project with a remedy for the technical debt of CSS", + "repository": "git@github.com:mozdevs/cssremedy.git", + "author": "Mozilla Developer Relations", + "license": "MPL-2.0", + "bugs": { + "url" : "https://github.com/owner/project/issues", + "email" : "project@hostname.com" + }, + "keywords": [ + "css", + "reset", + "default" + ] +} From b101f45611ff5d56a741cd7b298736ada08bc56e Mon Sep 17 00:00:00 2001 From: Miriam Suzanne Date: Thu, 12 Sep 2019 14:22:31 -0600 Subject: [PATCH 2/3] Fix bug-link typo --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 42bfb17..0060e92 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,7 @@ "repository": "git@github.com:mozdevs/cssremedy.git", "author": "Mozilla Developer Relations", "license": "MPL-2.0", - "bugs": { - "url" : "https://github.com/owner/project/issues", - "email" : "project@hostname.com" - }, + "bugs": "https://github.com/mozdevs/cssremedy/issues", "keywords": [ "css", "reset", From 11d88409c8ba43ed6fbd5f62beed4297cc5bbd25 Mon Sep 17 00:00:00 2001 From: Miriam Suzanne Date: Thu, 12 Sep 2019 14:23:28 -0600 Subject: [PATCH 3/3] Add homepage link (this will change when we get a site up) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0060e92..060f233 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "repository": "git@github.com:mozdevs/cssremedy.git", "author": "Mozilla Developer Relations", "license": "MPL-2.0", + "homepage": "https://github.com/mozdevs/cssremedy/", "bugs": "https://github.com/mozdevs/cssremedy/issues", "keywords": [ "css",