We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 0260323Copy full SHA for 0260323
.gitignore
@@ -0,0 +1,2 @@
1
+node_modules
2
+test
index.js
@@ -0,0 +1 @@
+module.exports = require('@ion-lang/ion/es5-compiler')
package.json
@@ -0,0 +1,14 @@
+{
+ "name": "ion-loader",
3
+ "version": "0.0.1",
4
+ "description": "A webpack loader for the ion language",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "Juan Lulkin <maiz@lulk.in> (https://medium.com/@joaomilho/)",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "@ion-lang/ion": "git+https://github.com/ion-lang/ion.git"
13
+ }
14
+}
0 commit comments