Skip to content

Commit

Permalink
ref: embroider-build#609 -- start esbuild prototype replacement for w…
Browse files Browse the repository at this point in the history
…ebpack
  • Loading branch information
NullVoxPopuli committed Mar 11, 2021
1 parent 0b0c8a2 commit 20d6b0a
Show file tree
Hide file tree
Showing 7 changed files with 894 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/esbuild/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
testEnvironment: 'node',
testMatch: [
'<rootDir>/tests/**/*.test.js',
],
};
38 changes: 38 additions & 0 deletions packages/esbuild/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "@embroider/esbuild",
"version": "0.37.0",
"private": false,
"description": "Builds EmberJS apps with ESBuild",
"repository": {
"type": "git",
"url": "https://github.com/embroider-build/embroider.git",
"directory": "packages/esbuild"
},
"license": "MIT",
"author": "NullVoxPopuli",
"main": "src/ember-webpack.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"scripts": {
"prepare": "tsc"
},
"dependencies": {
"esbuild": "^0.9.0"
},
"devDependencies": {
"@types/node": "^10.5.2",
"typescript": "~4.0.0"
},
"peerDependencies": {
"@embroider/core": "0.37.0"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"volta": {
"extends": "../../package.json"
}
}
Loading

0 comments on commit 20d6b0a

Please sign in to comment.