mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
ensure new meteor apps have modernTranspiler enabled
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,8 @@
|
||||
"server": "server/entry-meteor.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-preset-solid": "^1.8.15",
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
}
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"server": "server/main.js"
|
||||
},
|
||||
"testModule": "tests/main.js",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"server": "server/main.ts"
|
||||
},
|
||||
"testModule": "tests/main.ts",
|
||||
"modernWebArchsOnly": true
|
||||
"modernWebArchsOnly": true,
|
||||
"modernTranspiler": true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ To improve the development and deployment experience for all Meteor projects, we
|
||||
|
||||
## Quick start
|
||||
|
||||
To start using the new build stack, add the following to your `package.json`:
|
||||
Start using the new build stack by creating a Meteor app, or add this to your `package.json` in an existing one:
|
||||
|
||||
```json
|
||||
"meteor": {
|
||||
|
||||
Reference in New Issue
Block a user