Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update/trim dependencies #424

Merged
merged 5 commits into from
Dec 8, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove moment.js
  • Loading branch information
adroitwhiz committed Dec 8, 2019
commit 65b47bc0f6378c11408c47716241f8ee429ddaf7
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"eslint": "^6.7.2",
"jsdoc": "~3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"moment": "^2.22.2",
"node-minify": "^2.0.3",
"qunit": "^2.9.3",
"resemblejs": "^3.2.3",
Expand Down
3 changes: 1 addition & 2 deletions utils/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ var path = require('path');
var compressor = require('node-minify');
var _ = require('underscore');
var fs = require('fs');
var moment = require('moment');

var files = [
path.resolve(__dirname, './start-comment.js'),
Expand Down Expand Up @@ -53,7 +52,7 @@ compressor.minify({
});
var template = _.template(source);
source = template({
publishDate: moment().format()
publishDate: (new Date()).toISOString()
});
fs.writeFileSync(path.resolve(__dirname, '../build/two.js'), source, {
encoding: 'utf-8'
Expand Down