Skip to content

Commit

Permalink
build(deps): use @zazuko/env
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Jul 31, 2023
1 parent 22f897d commit f939cee
Show file tree
Hide file tree
Showing 48 changed files with 78 additions and 216 deletions.
10 changes: 10 additions & 0 deletions .changeset/chilled-tools-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"barnard59-sparql": patch
"barnard59-core": patch
"barnard59": patch
"barnard59-rdf": patch
"barnard59-test-support": patch
"barnard59-test-e2e": patch
---

Update clownface to `v2`, use `@zazuko/env` instead of `rdf-ext`
176 changes: 16 additions & 160 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { dirname, resolve } from 'path'
import { promisify } from 'util'
import { SpanStatusCode } from '@opentelemetry/api'
import program from 'commander'
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import fromFile from 'rdf-utils-fs/fromFile.js'
import { finished, PassThrough } from 'readable-stream'
import findPipeline from '../findPipeline.js'
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"@opentelemetry/semantic-conventions": "^0.24.0",
"@opentelemetry/tracing": "^0.24.0",
"@rdfjs/namespace": "^2.0.0",
"@zazuko/env": "^1.0.1",
"barnard59-core": "1 - 2",
"clownface": "^1.5.1",
"clownface": "^2.0.0",
"commander": "^7.1.0",
"lodash": "^4.17.21",
"rdf-ext": "^2.2.0",
"rdf-utils-fs": "^2.2.0",
"readable-stream": "^3.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/cloneTerm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'

function cloneTerm(term) {
if (!term) {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/factory/variables.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import $rdf from 'rdf-ext'
import $rdf from '@zazuko/env'
import ns from '../namespaces.js'
import { VariableMap } from '../VariableMap.js'

Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/loader/variable.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import cloneTerm from '../cloneTerm.js'
import ns from '../namespaces.js'
import { VariableMap } from '../VariableMap.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@opentelemetry/api": "^1.0.1",
"@rdfjs/namespace": "^2.0.0",
"@zazuko/env": "^1.0.1",
"clownface": "^1.4.0",
"clownface": "^2.0.0",
"duplex-to": "^1.0.1",
"duplexify": "^4.1.1",
"is-graph-pointer": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/cloneTerm.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { notStrictEqual, strictEqual, throws } from 'assert'
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import cloneTerm from '../lib/cloneTerm.js'
import ns from './support/namespaces.js'

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/loader/pipeline.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { strictEqual, rejects } from 'assert'
import { resolve } from 'path'
import clownface from 'clownface'
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import { pipelineDefinitionLoader } from 'barnard59-test-support/loadPipelineDefinition.js'
import { run } from '../../index.js'
import loader from '../../lib/loader/pipeline.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/loader/variable.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { strictEqual } from 'assert'
import clownface from 'clownface'
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import loader from '../../lib/loader/variable.js'
import ns from '../support/namespaces.js'

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/support/createPipelineDefinition.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import clownface from 'clownface'
import rdf from 'rdf-ext'
import rdf from '@zazuko/env'
import ns from './namespaces.js'

function createPipelineDefinition({
Expand Down
Loading

0 comments on commit f939cee

Please sign in to comment.