Skip to content

Commit 970f8ce

Browse files
committedFeb 10, 2016
Replace ant with an npm-based build process
Re-organize the files to match standard node/npm conventions, and use the `browserify` package to create bundles which are completely backward-compatible with the bundles built with the previous process. Fixes: #191
1 parent af9ed3f commit 970f8ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+17461
-27565
lines changed
 

‎.gitignore

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#Ignore timestamped build outputs.
2-
build/
3-
41
# Windows image file caches
52
Thumbs.db
63

@@ -11,4 +8,5 @@ Desktop.ini
118
.DS_Store
129

1310
# NPM files
14-
npm-debug.log
11+
npm-debug.log
12+
node_modules

‎.jshintrc

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
"evil": true,
66
"forin": true,
77
"freeze": true,
8-
"latedef": true,
8+
"latedef": "nofunc",
99
"loopfunc": true,
1010
"noarg": true,
11+
"node": true,
1112
"nonew": true,
13+
"predef": ["-SyntaxError"],
1214
"proto": true,
13-
"rhino": false,
14-
"strict": "implied",
15+
"strict": true,
1516
"undef": true,
1617
"unused": "vars"
1718
}

3 commit comments

Comments
 (3)

XhmikosR commented on Mar 27, 2016

@XhmikosR
Member

@cscott: npm run changelog is broken here. I'm trying it without a new tag yet.

ideadapt commented on Apr 18, 2016

@ideadapt
Contributor

@XhmikosR what exactly is broken?
git checkout 970f8ce4f48a4e178c34e25d79879a7fbed302eb
npm run changelog
works for me

XhmikosR commented on Apr 18, 2016

@XhmikosR
Member

Well, everything is broken here. I have no time to investigate this so I just removed the changelog task.

https://github.com/CSSLint/parser-lib/compare/beta

My main concern is CSSLint/csslint#514 (comment)

Please sign in to comment.