forked from embroider-build/embroider
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: embroider-build#609 -- start esbuild prototype replacement for w…
…ebpack
- Loading branch information
1 parent
0b0c8a2
commit 20d6b0a
Showing
7 changed files
with
894 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
testEnvironment: 'node', | ||
testMatch: [ | ||
'<rootDir>/tests/**/*.test.js', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.