Skip to content

Commit

Permalink
Clean up and set up package publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
Lepozepo committed Feb 7, 2020
1 parent b9e1de0 commit 4252163
Show file tree
Hide file tree
Showing 7 changed files with 2,561 additions and 708 deletions.
8 changes: 1 addition & 7 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "10"
}
}]
],
"presets": ["@babel/preset-react"],
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-optional-chaining"]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.DS_Store
.DS_Store
pkg
2 changes: 1 addition & 1 deletion examples/apolloService/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const pulumi = require('@pulumi/pulumi');
const awsx = require('@pulumi/awsx');
const Service = require('../../src/Service');
const { Service } = require('../../pkg/dist-node');

const api = new Service('umble', {
image: awsx.ecs.Image.fromPath('umble-test', './app'),
Expand Down
Loading

0 comments on commit 4252163

Please sign in to comment.