Skip to content

Commit

Permalink
Cleanup (#61)
Browse files Browse the repository at this point in the history
* remove dead code

* rm bintray

* rm dead code

* fix npm

* release js libs

* rm bintray

* rm bintray

* rm bintray
  • Loading branch information
azahnen authored May 5, 2021
1 parent cc64dd9 commit be6a250
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pipeline:
image: openjdk:11-slim
commands:
- export GRADLE_USER_HOME=$${DRONE_WORKSPACE}/.gradle
- ./gradlew checkAll assembleAll -PisSnapshot=true
- ./gradlew checkAll assembleAll -Psnapshot=true
when:
event: [push, pull_request]

Expand All @@ -28,7 +28,7 @@ pipeline:
image: openjdk:11-slim
commands:
- export GRADLE_USER_HOME=$${DRONE_WORKSPACE}/.gradle
- ./gradlew publishAll -PisSnapshot=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
- ./gradlew publishAll -Psnapshot=true -PdeployUser=$SNAPSHOT_USER -PdeployPassword=$SNAPSHOT_PASS
secrets: [ snapshot_user, snapshot_pass]
when:
event: push
Expand Down
6 changes: 3 additions & 3 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
npmScopes:
xtraplatform:
npmPublishRegistry: 'https://api.bintray.com/npm/iide/npm/'
npmRegistryServer: 'https://api.bintray.com/npm/iide/npm/'
npmAuthToken: '${BINTRAY_NPM_TOKEN:-not_set}'
npmPublishRegistry: 'https://dl.interactive-instruments.de/repository/npm/'
npmRegistryServer: 'https://dl.interactive-instruments.de/repository/npm/'
npmAuthToken: '${NPM_TOKEN:-not_set}'

packageExtensions:
'eslint-module-utils@*':
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"@storybook/addon-essentials": "^6.0.13",
"@storybook/addon-links": "^6.0.13",
"@storybook/react": "^6.0.13",
"@xtraplatform/manager": "^2.0.0-beta.12",
"@xtraplatform/neutrino": "^2.0.0-beta.4",
"@xtraplatform/manager": "^2.0.0",
"@xtraplatform/neutrino": "^2.0.0",
"babel-loader": "^8",
"core-js": "^3",
"eslint": "^7.7.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
npmScopes:
xtraplatform:
npmPublishRegistry: 'https://api.bintray.com/npm/iide/npm/'
npmRegistryServer: 'https://api.bintray.com/npm/iide/npm/'
npmAuthToken: '${BINTRAY_NPM_TOKEN:-not_set}'
npmPublishRegistry: 'https://dl.interactive-instruments.de/repository/npm/'
npmRegistryServer: 'https://dl.interactive-instruments.de/repository/npm/'
npmAuthToken: '${NPM_TOKEN:-not_set}'

packageExtensions:
'eslint-module-utils@*':
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xtraplatform/create-js",
"version": "2.0.0-beta.0",
"version": "2.0.0",
"main": "index.js",
"author": "interactive instruments GmbH",
"license": "MPL-2.0",
Expand All @@ -13,8 +13,8 @@
"@neutrinojs/eslint": "^9.3.0",
"@neutrinojs/mocha": "^9.3.0",
"@storybook/source-loader": "^6.0.14",
"@xtraplatform/core": "^2.0.0-beta.14",
"@xtraplatform/neutrino": "^2.0.0-beta.4",
"@xtraplatform/core": "^2.0.0",
"@xtraplatform/neutrino": "^2.0.0",
"chalk": "^4.1.0",
"yeoman-environment": "^2.10.3",
"yeoman-generator": "^4.11.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xtraplatform/neutrino",
"version": "2.0.0-beta.4",
"version": "2.0.0",
"main": "index.js",
"author": "interactive instruments GmbH",
"license": "MPL-2.0",
Expand Down
4 changes: 2 additions & 2 deletions xtraplatform-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'de.interactive_instruments.xtraplatform-feature' version '3.5.1-SNAPSHOT'
id 'de.interactive_instruments.xtraplatform-feature' version '3.5.1'
id "com.diffplug.spotless" version "5.1.2" apply false
//id 'com.github.hierynomus.license-report' version '0.15.0' apply false
}
Expand All @@ -9,7 +9,7 @@ allprojects {
}

ext {
versionSuffix = project.findProperty('isSnapshot') == 'true' ? '-SNAPSHOT' : ''
versionSuffix = project.findProperty('snapshot') == 'true' ? '-SNAPSHOT' : ''
}

version = '3.5.0' + versionSuffix
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xtraplatform/core",
"version": "2.0.0-beta.14",
"version": "2.0.0",
"author": "interactive instruments GmbH",
"license": "MPL-2.0",
"module": "src/index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@neutrinojs/airbnb": "^9.3.0",
"@neutrinojs/mocha": "^9.3.0",
"@storybook/addon-docs": "^6.0.12",
"@xtraplatform/neutrino": "^2.0.0-beta.4",
"@xtraplatform/neutrino": "^2.0.0",
"core-js": "^3",
"eslint": "*",
"eslint-import-resolver-node": "*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ yarn dlx
Now you can switch to the `javascript` directory and run:

```
env "NPM_CONFIG_@xtraplatform:registry=https://api.bintray.com/npm/iide/npm/" npx @xtraplatform/create-module javascript geo_json
env "NPM_CONFIG_@xtraplatform:registry=https://dl.interactive-instruments.de/repository/npm/" npx @xtraplatform/create-module javascript geo_json
```

In this case the name of the module would be `geo_json`, so adjust to the desired name.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xtraplatform/manager",
"version": "2.0.0-beta.12",
"version": "2.0.0",
"author": "interactive instruments GmbH",
"license": "MPL-2.0",
"module": "src/index.js",
Expand All @@ -11,7 +11,7 @@
},
"peerDependencies": {
"@apollo/client": "^3",
"@xtraplatform/core": "^2.0.0-beta.14",
"@xtraplatform/core": "^2.0.0",
"feature-u": "^3",
"grommet": "^2",
"grommet-icons": "^4",
Expand All @@ -27,8 +27,8 @@
"@apollo/client": "^3",
"@neutrinojs/airbnb": "^9.3.0",
"@neutrinojs/mocha": "^9.3.0",
"@xtraplatform/core": "^2.0.0-beta.14",
"@xtraplatform/neutrino": "^2.0.0-beta.4",
"@xtraplatform/core": "^2.0.0",
"@xtraplatform/neutrino": "^2.0.0",
"core-js": "^3",
"eslint": "*",
"eslint-import-resolver-node": "*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xtraplatform/services",
"version": "2.0.0-beta.11",
"version": "2.0.0",
"author": "interactive instruments GmbH",
"license": "MPL-2.0",
"module": "src/index.js",
Expand All @@ -11,8 +11,8 @@
},
"peerDependencies": {
"@apollo/client": "^3",
"@xtraplatform/core": "^2.0.0-beta.14",
"@xtraplatform/manager": "^2.0.0-beta.12",
"@xtraplatform/core": "^2.0.0",
"@xtraplatform/manager": "^2.0.0",
"feature-u": "^3",
"grommet": "^2",
"grommet-icons": "^4",
Expand All @@ -28,9 +28,9 @@
"@apollo/client": "^3",
"@neutrinojs/airbnb": "^9.3.0",
"@neutrinojs/mocha": "^9.3.0",
"@xtraplatform/core": "^2.0.0-beta.14",
"@xtraplatform/manager": "^2.0.0-beta.12",
"@xtraplatform/neutrino": "^2.0.0-beta.4",
"@xtraplatform/core": "^2.0.0",
"@xtraplatform/manager": "^2.0.0",
"@xtraplatform/neutrino": "^2.0.0",
"core-js": "^3",
"eslint": "*",
"eslint-import-resolver-node": "*",
Expand Down
4 changes: 2 additions & 2 deletions xtraplatform-dev/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'de.interactive_instruments.xtraplatform-feature' version '3.5.1-SNAPSHOT'
id 'de.interactive_instruments.xtraplatform-feature' version '3.5.1'
}

allprojects {
group = 'de.interactive_instruments'
}

ext {
versionSuffix = project.findProperty('isSnapshot') == 'true' ? '-SNAPSHOT' : ''
versionSuffix = project.findProperty('snapshot') == 'true' ? '-SNAPSHOT' : ''
}

version = '3.5.0' + versionSuffix
Expand Down
32 changes: 16 additions & 16 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3914,7 +3914,7 @@ __metadata:
languageName: node
linkType: hard

"@xtraplatform/core@^2.0.0-beta.14, @xtraplatform/core@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/core":
"@xtraplatform/core@^2.0.0, @xtraplatform/core@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/core":
version: 0.0.0-use.local
resolution: "@xtraplatform/core@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/core"
dependencies:
Expand All @@ -3923,7 +3923,7 @@ __metadata:
"@neutrinojs/airbnb": ^9.3.0
"@neutrinojs/mocha": ^9.3.0
"@storybook/addon-docs": ^6.0.12
"@xtraplatform/neutrino": ^2.0.0-beta.4
"@xtraplatform/neutrino": ^2.0.0
check-prop-types: ^1.1.2
core-js: ^3
deepmerge: ^4.2.2
Expand Down Expand Up @@ -3974,23 +3974,23 @@ __metadata:
"@neutrinojs/eslint": ^9.3.0
"@neutrinojs/mocha": ^9.3.0
"@storybook/source-loader": ^6.0.14
"@xtraplatform/core": ^2.0.0-beta.14
"@xtraplatform/neutrino": ^2.0.0-beta.4
"@xtraplatform/core": ^2.0.0
"@xtraplatform/neutrino": ^2.0.0
chalk: ^4.1.0
yeoman-environment: ^2.10.3
yeoman-generator: ^4.11.0
languageName: unknown
linkType: soft

"@xtraplatform/manager@^2.0.0-beta.12, @xtraplatform/manager@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/manager":
"@xtraplatform/manager@^2.0.0, @xtraplatform/manager@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/manager":
version: 0.0.0-use.local
resolution: "@xtraplatform/manager@workspace:xtraplatform-core/xtraplatform-manager/src/main/javascript/manager"
dependencies:
"@apollo/client": ^3
"@neutrinojs/airbnb": ^9.3.0
"@neutrinojs/mocha": ^9.3.0
"@xtraplatform/core": ^2.0.0-beta.14
"@xtraplatform/neutrino": ^2.0.0-beta.4
"@xtraplatform/core": ^2.0.0
"@xtraplatform/neutrino": ^2.0.0
apollo-link-rest: ^0.8.0-beta.0
core-js: ^3
eslint: "*"
Expand Down Expand Up @@ -4021,7 +4021,7 @@ __metadata:
styled-components: ^5
peerDependencies:
"@apollo/client": ^3
"@xtraplatform/core": ^2.0.0-beta.14
"@xtraplatform/core": ^2.0.0
feature-u: ^3
grommet: ^2
grommet-icons: ^4
Expand All @@ -4035,7 +4035,7 @@ __metadata:
languageName: unknown
linkType: soft

"@xtraplatform/neutrino@^2.0.0-beta.4, @xtraplatform/neutrino@workspace:xtraplatform-build-tools/scaffolding/src/main/javascript/neutrino":
"@xtraplatform/neutrino@^2.0.0, @xtraplatform/neutrino@workspace:xtraplatform-build-tools/scaffolding/src/main/javascript/neutrino":
version: 0.0.0-use.local
resolution: "@xtraplatform/neutrino@workspace:xtraplatform-build-tools/scaffolding/src/main/javascript/neutrino"
dependencies:
Expand All @@ -4054,9 +4054,9 @@ __metadata:
"@apollo/client": ^3
"@neutrinojs/airbnb": ^9.3.0
"@neutrinojs/mocha": ^9.3.0
"@xtraplatform/core": ^2.0.0-beta.14
"@xtraplatform/manager": ^2.0.0-beta.12
"@xtraplatform/neutrino": ^2.0.0-beta.4
"@xtraplatform/core": ^2.0.0
"@xtraplatform/manager": ^2.0.0
"@xtraplatform/neutrino": ^2.0.0
apollo-link-rest: ^0.8.0-beta.0
core-js: ^3
deepmerge: ^4.2.2
Expand Down Expand Up @@ -4084,8 +4084,8 @@ __metadata:
styled-components: ^5
peerDependencies:
"@apollo/client": ^3
"@xtraplatform/core": ^2.0.0-beta.14
"@xtraplatform/manager": ^2.0.0-beta.12
"@xtraplatform/core": ^2.0.0
"@xtraplatform/manager": ^2.0.0
feature-u: ^3
grommet: ^2
grommet-icons: ^4
Expand Down Expand Up @@ -14013,8 +14013,8 @@ fsevents@^1.2.7:
"@storybook/addon-essentials": ^6.0.13
"@storybook/addon-links": ^6.0.13
"@storybook/react": ^6.0.13
"@xtraplatform/manager": ^2.0.0-beta.12
"@xtraplatform/neutrino": ^2.0.0-beta.4
"@xtraplatform/manager": ^2.0.0
"@xtraplatform/neutrino": ^2.0.0
babel-loader: ^8
core-js: ^3
eslint: ^7.7.0
Expand Down

0 comments on commit be6a250

Please sign in to comment.