Minor tidy-ups
authorNick Downing <nick@ndcode.org>
Tue, 20 Nov 2018 00:08:19 +0000 (11:08 +1100)
committerNick Downing <nick@ndcode.org>
Tue, 20 Nov 2018 00:09:22 +0000 (11:09 +1100)
.gitignore
.npmignore [deleted symlink]
.yarnignore [deleted symlink]
BuildCache.js
README.md

index 9805cda..2f32b5c 100644 (file)
@@ -1,4 +1,4 @@
-/build_cache-*.tgz
+/ndcode-build_cache-*.tgz
 /node_modules
 /package-lock.json
 /yarn.lock
diff --git a/.npmignore b/.npmignore
deleted file mode 120000 (symlink)
index 3e4e48b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-.gitignore
\ No newline at end of file
diff --git a/.yarnignore b/.yarnignore
deleted file mode 120000 (symlink)
index 3e4e48b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-.gitignore
\ No newline at end of file
index fbffa49..b48702f 100644 (file)
@@ -1,17 +1,17 @@
 /*
  * Copyright (C) 2018 Nick Downing <nick@ndcode.org>
  * SPDX-License-Identifier: MIT
- * 
+ *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to
  * deal in the Software without restriction, including without limitation the
  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  * sell copies of the Software, and to permit persons to whom the Software is
  * furnished to do so, subject to the following conditions:
- * 
+ *
  * The above copyright notice and this permission notice shall be included in
  * all copies or substantial portions of the Software.
- * 
+ *
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
index 2d40c21..ad90319 100644 (file)
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ We are relying on `fs_readFile()` or `less.render()` to throw exceptions if the
 original stylesheet or any included stylesheet is not found or contains errors.
 
 Also, note how much simplified the handling of asynchronicity is when using the
-ES6 `async`/`await` syntax. We recommend to do this for all new code, and to do
+ES7 `async`/`await` syntax. We recommend to do this for all new code, and to do
 it consistently, even if the use of `Promise` directly might give shorter code.
 
 Code which is not already promisified, can be promisified as shown, or else we