@taqueria/plugin-ligo 0.0.5-test1 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/compile.js +2 -2
  2. package/package.json +2 -2
package/compile.js CHANGED
@@ -11,10 +11,10 @@ const getInputFilename = (opts) => sourceFile => {
11
11
  return join(opts.config.contractsDir, sourceFile)
12
12
  }
13
13
 
14
- const getCompileCommand = (opts, arch) => (sourceFile) => {
14
+ const getCompileCommand = (opts, _arch) => (sourceFile) => {
15
15
  const {projectDir} = opts
16
16
  const inputFile = getInputFilename (opts) (sourceFile)
17
- const baseCommand = `docker run --platform ${arch} --rm -v \"${projectDir}\":/project -w /project ligolang/ligo:next compile contract ${inputFile}`
17
+ const baseCommand = `docker run --rm -v \"${projectDir}\":/project -w /project ligolang/ligo:next compile contract ${inputFile}`
18
18
  const entryPoint = opts.e ? `-e ${opts.e}` : ""
19
19
  const syntax = opts["-s"] ? `s ${opts['s']} : ""` : ""
20
20
  const outFile = `-o ${getContractArtifactFilename(opts)(sourceFile)}`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/plugin-ligo",
3
- "version": "0.0.5-test1",
3
+ "version": "0.0.8",
4
4
  "description": "A taqueria plugin for compiling LIGO smart contracts",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -34,6 +34,6 @@
34
34
  "homepage": "https://github.com/ecadlabs/taqueria#readme",
35
35
  "dependencies": {
36
36
  "fast-glob": "^3.2.7",
37
- "@taqueria/node-sdk": "^0.0.4"
37
+ "@taqueria/node-sdk": "^0.0.5"
38
38
  }
39
39
  }