Skip to content

Commit 558d7a8

Browse files
committed
Update build for legacy viewing
1 parent 0fba14b commit 558d7a8

File tree

5 files changed

+3
-24
lines changed

5 files changed

+3
-24
lines changed

Gruntfile.js

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ module.exports = function ( grunt ) {
1111

1212
config = {
1313
pkg: grunt.file.readJSON( 'package.json' ),
14-
latest: '0.8',
15-
edge: 'edge',
1614
prod: grunt.option( 'prod' ),
1715

1816
// TODO do we need this?... probably not, it just got

grunt/config/copy.js

-16
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,6 @@ module.exports = {
1515
dest: 'build/'
1616
}]
1717
},
18-
latest: {
19-
files: [{
20-
expand: true,
21-
cwd: 'build/<%= latest %>/',
22-
src: '**',
23-
dest: 'build/latest/'
24-
}]
25-
},
26-
edge: {
27-
files: [{
28-
expand: true,
29-
cwd: 'build/<%= edge %>/',
30-
src: '**',
31-
dest: 'build/edge/'
32-
}]
33-
},
3418
snippets: {
3519
files: [{
3620
expand: true,

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"surge": "^0.17.2"
1717
},
1818
"scripts": {
19-
"build": "grunt build",
20-
"predeploy": "npm run build",
21-
"deploy": "surge build docs.ractivejs.org",
22-
"grunt": "./node_modules/.bin/grunt"
19+
"start": "grunt",
20+
"build": "grunt build"
2321
}
2422
}

root/edge/index.html

-1
This file was deleted.

root/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<script>window.location.href='latest/get-started'</script>
1+
<script>window.location.href='0.8/get-started'</script>

0 commit comments

Comments
 (0)