Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "fauna", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Generate and render animated L-Systems", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
# fauna | ||
Javascript library for generating L-Systems | ||
### Publish a new version | ||
# Make changes and increment package.json semver | ||
git add -A && git commit -m "Commit Message" | ||
git tag <semver> | ||
git push | ||
git push --tags | ||
npm publish | ||
npm info # to verify it worked | ||
TODO: Test `git tag -a <semver> -m "my version 1.4"` to test if it creates the release message in Github |
var expect = require('chai').expect; | ||
var fauna = require('./index.js'); | ||
describe('iterate test', function() { | ||
expect(0).to.be.equal(0); | ||
it('simple iteration', function() { | ||
const expandedString = fauna.iterate('a', {'a': 'bab'}, 2); | ||
expect(expandedString).to.be.equal('bbabb'); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1494
6130
16
17