Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move utils to felt #206

Merged
merged 26 commits into from
May 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.0]
node-version: [14.16]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# changelog

## 0.26.0

- **break**: move utils to `@feltcoop/felt` and add it as a dependency
([#206](https://github.com/feltcoop/gro/pull/206))

## 0.25.2

- properly detect unclean git state for `gro deploy`
Expand Down
41 changes: 31 additions & 10 deletions package-lock.json

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

6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,18 @@
"node": ">=14.16.0"
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@feltcoop/felt": "^0.1.3",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/pluginutils": "^4.1.0",
"@types/fs-extra": "^9.0.9",
"@types/node": "^14.14.37",
"@types/node": "^15.6.1",
"@types/prettier": "^2.2.3",
"cheap-watch": "^1.0.3",
"dequal": "^2.0.2",
"es-module-lexer": "^0.4.1",
"esbuild": "^0.9.3",
"esinstall": "1.0.5",
"fs-extra": "^10.0.0",
"kleur": "^4.1.4",
"locate-character": "^2.0.5",
"mri": "^1.1.6",
"path-browserify": "^1.0.1",
Expand Down
5 changes: 3 additions & 2 deletions src/adapt/gro-adapter-api-server.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type {SpawnedProcess} from '@feltcoop/felt/utils/process.js';
import {EMPTY_OBJECT} from '@feltcoop/felt/utils/object.js';

import type {Adapter} from './adapter.js';
import type {SpawnedProcess} from '../utils/process.js';
import type {TaskEvents as ServerTaskEvents} from '../server.task.js';
import type {Args} from '../task/task.js';
import {EMPTY_OBJECT} from '../utils/object.js';

// TODO WIP do not use
// TODO name? is it actually specific to frontends? or is this more about bundling?
Expand Down
Loading