Browse Source

*.deploy.js files are gone with Amber >= 0.12.0

Manfred Kroehnert 10 years ago
parent
commit
058c769f30
3 changed files with 5 additions and 12 deletions
  1. 5 7
      README.md
  2. 0 1
      rename.json
  3. 0 4
      root/js/name.deploy.js

+ 5 - 7
README.md

@@ -1,13 +1,10 @@
 # grunt-init-amber
 
-> Create an [Amber Smalltalk][] based application.
-
-[Amber Smalltalk]: http://amber-smalltalk.net
-[grunt-init]: http://gruntjs.com/project-scaffolding
+> Create an [Amber Smalltalk](http://amber-lang.net) based application.
 
 
 ## Installation
-Install [grunt-init][] if you have not already done so.
+Install [grunt-init](http://gruntjs.com/project-scaffolding) if you have not already done so.
 
 Place this template in your `~/.grunt-init/` directory after installing grunt-init.
 It is recommended to clone this template with git as follows:
@@ -16,7 +13,7 @@ It is recommended to clone this template with git as follows:
 git clone git://github.com/mkroehnert/grunt-init-amber.git ~/.grunt-init/amber
 ```
 
-_(Windows users, see [the documentation][grunt-init] for the correct destination directory path)_
+_Windows users, see [the grunt-init documentation](http://gruntjs.com/project-scaffolding) for the correct directory destination_
 
 ## Usage
 
@@ -26,4 +23,5 @@ At the command-line, cd into an empty directory, run this command and follow the
 grunt-init amber
 ```
 
-_Note that this template will generate files in the current directory, so be sure to change to a new directory first if you do not want to overwrite existing files._
+_Note that this template will generate files in the current directory,
+so be sure to change to a new directory first if you do not want to overwrite existing files._

+ 0 - 1
rename.json

@@ -1,5 +1,4 @@
 {
   "js/name.js": "js/{%= name %}.js",
-  "js/name.deploy.js": "js/{%= name %}.deploy.js",
   "st/name.st": "st/{%= name %}.st"
 }

+ 0 - 4
root/js/name.deploy.js

@@ -1,4 +0,0 @@
-smalltalk.addPackage('{%= name %}');
-smalltalk.addClass('{%= name %}', smalltalk.Object, [], '{%= name %}');
-
-