Mercurial > wikked
annotate tasks.py @ 444:2f68a463cb06
cm: Replace Grunt/RequireJS with Gulp/Browserify.
Yes, I know, this sounds like it's 2014 or something, and cool kids are now
actually on webpack or whatever.
Anyway, besides the change to a `gulpfile`, it also moves all dependencies
over to `npm` (via the `package.json` file), which cleans up the repository
nicely, and replaces awkward JS imports with simpler `require` statements.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 03 Jan 2018 00:51:59 -0800 |
parents | 41cdccd71717 |
children |
rev | line source |
---|---|
432
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 from invoke import Collection |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 from monkeys.release import makerelease |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
5 ns = Collection() |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
6 ns.add_task(makerelease, name='release') |