master
Commits on Aug 12, 2020
-
The project was moved, but some links weren't updated accordingly.
Commits on May 4, 2020
-
# Conflicts: # integration-testing/multi-nodejs-test/test.sh # spec/string-params.js # spec/subexpressions.js # spec/track-ids.js
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Apr 24, 2020
Commits on Apr 15, 2020
-
docs: Fix simple typo, mulitple -> multiple
There is a small typo in lib/handlebars/compiler/whitespace-control.js. Should read `multiple` rather than `mulitple`.
Commits on Apr 3, 2020
-
fixes #1673 - we no longer need to pin to yargs 14 for node 6 & 8 support
-
tests: added failing test for issue #1673
- demonstrates the regression
ErisDS committedApr 3, 2020 -
chore: start testing on Node.js 12 and 13
- make sure we're aware of all compatibility issues
-
breaking: drop support for Node.js < v10
- handlebars is changing to a policy of only supporting current and active versions of Node.js
-
Revert "Switch cmd parser to latest minimist"
This reverts commit c2f1e62.
-
ErisDS committed
Apr 3, 2020 -
ErisDS committed
Apr 3, 2020 -
- indicate changes have been reverted
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
-
Revert "chore: set Node.js compatibility to v6+"
This reverts commit 309d2b4.
ErisDS committedApr 3, 2020
Commits on Apr 2, 2020
-
-
ErisDS committed
Apr 2, 2020 -
- allows us to support Node v6 and v8 for now
-
chore: set Node.js compatibility to v6+
- drop support for versions less than Node v6 via engines - update integration tests to also test newer versions
ErisDS committedApr 2, 2020 -
- They should fail, if any test fails - Use "set -e" instead of "|| exit 1", because it suffices to be specified at the top of each file
-
docs: update release-docs in CONTRIBUTING.md
- remove ember testing - add docs for updating the website. - add list of required accesses to publish
Commits on Apr 1, 2020
-
-
ErisDS committed
Apr 1, 2020 -
Use tmp directory for files written during tests
- Add spec/tmp directory with .gitkeep file to indicate the folder is intentional - Add the folder contents to .gitignore - Use this folder to output the sourcemap file during bin tests. This file is a sideeffect of the main test
-
tasks/test-bin.js: Delete duplicate test
Per comment by @ErisDS on the GitHub PR: #1666 (comment)
-
Revert "Update release-notes.md"
This reverts commit 738391a. Think this needs to be left to the release tool :|
ErisDS committedApr 1, 2020
Commits on Mar 31, 2020
-
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
chore: add unit tests for cli options (#1666)
- adds full unit tests for all cli options - demonstrates that nothing changes between minimist and yargs except a minor order change in the --help text - proves b9c4b25 works the same as before Co-authored-by: fabb <fabb@users.noreply.github.com>
-
fix: migrate from optimist to yargs (#1666)
closes #1658 - adapted code from master to latest yargs (`.option` calls). ``` 4.x: found 188 vulnerabilities (169 low, 4 moderate, 14 high, 1 critical) in 5815 scanned packages 4.x with this PR: found 32 vulnerabilities (17 low, 1 moderate, 13 high, 1 critical) in 5829 scanned packages ```
-
chore: ignore external @types in tests
- some indirect dependencies install @types packages which are not compatible with the older typescript. - adjusted test's tsconfig to not pick these up automatically, as the actual .d.ts does not depend on these external types.