mirror of
https://github.com/expressjs/express.git
synced 2026-02-26 18:57:43 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d893009a8d | ||
|
|
b62e1741be | ||
|
|
903c2aa642 |
@@ -1,4 +1,10 @@
|
||||
|
||||
0.7.3 / 2010-03-16
|
||||
==================
|
||||
|
||||
* Added package.json
|
||||
* Fixed requiring of haml / sass due to kiwi removal
|
||||
|
||||
0.7.2 / 2010-03-16
|
||||
==================
|
||||
|
||||
|
||||
@@ -4,12 +4,9 @@ require('express')
|
||||
require('express/plugins')
|
||||
|
||||
var messages = [],
|
||||
utils = require('express/utils'),
|
||||
kiwi = require('kiwi')
|
||||
|
||||
utils = require('express/utils')
|
||||
|
||||
configure(function(){
|
||||
kiwi.seed('haml')
|
||||
kiwi.seed('sass')
|
||||
use(MethodOverride)
|
||||
use(ContentLength)
|
||||
use(Cookie)
|
||||
|
||||
@@ -3,11 +3,7 @@ require.paths.unshift('lib')
|
||||
require('express')
|
||||
require('express/plugins')
|
||||
|
||||
var kiwi = require('kiwi')
|
||||
|
||||
configure(function(){
|
||||
kiwi.seed('haml')
|
||||
kiwi.seed('sass')
|
||||
use(MethodOverride)
|
||||
use(ContentLength)
|
||||
use(Cookie)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
require.paths.unshift(__dirname + '/support/ext/lib')
|
||||
require.paths.unshift(__dirname + '/support/haml/lib')
|
||||
require.paths.unshift(__dirname + '/support/sass/lib')
|
||||
require('ext')
|
||||
require('support/oo/lib/oo')
|
||||
require('support/haml/lib/haml')
|
||||
require('support/sass/lib/sass')
|
||||
require('express/core')
|
||||
@@ -314,7 +314,7 @@ Server = Class({
|
||||
// --- Express
|
||||
|
||||
Express = {
|
||||
version: '0.7.2',
|
||||
version: '0.7.3',
|
||||
config: [],
|
||||
routes: [],
|
||||
plugins: [],
|
||||
|
||||
14
package.json
Normal file
14
package.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "Express",
|
||||
"description": "Sinatra inspired web development framework",
|
||||
"version": "0.7.3",
|
||||
"keywords": ["framework", "sinatra", "web", "rest", "restful"],
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
"scripts": {
|
||||
"install": "git submodule update --init",
|
||||
"test": "make test"
|
||||
},
|
||||
"engines": { "node": ">= 0.1.30" }
|
||||
}
|
||||
Reference in New Issue
Block a user